}
 
 static struct pnp_device_id device_ids[] = {
-       {.id = "NIC1900",.driver_data = 0},
-       {.id = "NIC2400",.driver_data = 0},
-       {.id = "NIC2500",.driver_data = 0},
-       {.id = "NIC2600",.driver_data = 0},
-       {.id = "NIC2700",.driver_data = 0},
+       {.id = "NIC1900", .driver_data = 0},
+       {.id = "NIC2400", .driver_data = 0},
+       {.id = "NIC2500", .driver_data = 0},
+       {.id = "NIC2600", .driver_data = 0},
+       {.id = "NIC2700", .driver_data = 0},
        {.id = ""}
 };
 
 
        if (dev->iobase)
                release_region(dev->iobase, NI_SIZE);
-       if (dev->irq) {
+       if (dev->irq)
                free_irq(dev->irq, dev);
-       }
+
        if (devpriv->isapnp_dev)
                pnp_device_detach(devpriv->isapnp_dev);
 
 
                if (pnp_device_attach(isapnp_dev) < 0) {
                        printk
-                           ("ni_atmio: %s found but already active, skipping.\n",
-                            ni_boards[i].name);
+                        ("ni_atmio: %s found but already active, skipping.\n",
+                         ni_boards[i].name);
                        continue;
                }
                if (pnp_activate_dev(isapnp_dev) < 0) {
        /* generic E series stuff in ni_mio_common.c */
 
        ret = ni_E_init(dev, it);
-       if (ret < 0) {
+       if (ret < 0)
                return ret;
-       }
+
 
        return 0;
 }
        int i;
 
        for (i = 0; i < n_ni_boards; i++) {
-               if (ni_boards[i].device_id == device_id) {
+               if (ni_boards[i].device_id == device_id)
                        return i;
-               }
+
        }
-       if (device_id == 255) {
+       if (device_id == 255)
                printk(" can't find board\n");
-       } else if (device_id == 0) {
+        else if (device_id == 0)
                printk(" EEPROM read error (?) or device not found\n");
-       } else {
+        else
                printk(" unknown device ID %d -- contact author\n", device_id);
-       }
+
        return -1;
 }