Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 186769
b: refs/heads/master
c: bc2955d
h: refs/heads/master
i:
  186767: f249316
v: v3
  • Loading branch information
Graham M Howe authored and Greg Kroah-Hartman committed Mar 4, 2010
1 parent 1a8f66b commit 7912570
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: cd9d25ba31b2def7f84da1e3cedf21e8ebb90722
refs/heads/master: bc2955ddf48d2da94019680fa46deae88d39b40e
34 changes: 17 additions & 17 deletions trunk/drivers/staging/comedi/drivers/ni_atmio.c
Original file line number Diff line number Diff line change
Expand Up @@ -329,11 +329,11 @@ static uint16_t ni_atmio_win_in(struct comedi_device *dev, int addr)
}

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 = ""}
};

Expand Down Expand Up @@ -362,9 +362,9 @@ static int ni_atmio_detach(struct comedi_device *dev)

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);

Expand All @@ -387,8 +387,8 @@ static int ni_isapnp_find_board(struct pnp_dev **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) {
Expand Down Expand Up @@ -496,9 +496,9 @@ static int ni_atmio_attach(struct comedi_device *dev,
/* 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;
}
Expand All @@ -509,16 +509,16 @@ static int ni_getboardtype(struct comedi_device *dev)
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;
}

0 comments on commit 7912570

Please sign in to comment.