Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 325283
b: refs/heads/master
c: ca33f4c
h: refs/heads/master
i:
  325281: 4d70806
  325279: 0abeff6
v: v3
  • Loading branch information
Ian Abbott authored and Greg Kroah-Hartman committed Sep 17, 2012
1 parent a100084 commit 61c6838
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 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: 6a2a2cdd57d11ee3117539b846a45df6efbd35b1
refs/heads/master: ca33f4ce35648c2301f398052d0081ebc8e5d7cd
12 changes: 5 additions & 7 deletions trunk/drivers/staging/comedi/drivers/ni_6527.c
Original file line number Diff line number Diff line change
Expand Up @@ -369,8 +369,6 @@ static int ni6527_attach(struct comedi_device *dev, struct comedi_devconfig *it)
struct comedi_subdevice *s;
int ret;

printk(KERN_INFO "comedi%d: ni6527\n", dev->minor);

ret = alloc_private(dev, sizeof(struct ni6527_private));
if (ret < 0)
return ret;
Expand All @@ -381,13 +379,13 @@ static int ni6527_attach(struct comedi_device *dev, struct comedi_devconfig *it)

ret = mite_setup(devpriv->mite);
if (ret < 0) {
printk(KERN_ERR "comedi: error setting up mite\n");
dev_err(dev->class_dev, "error setting up mite\n");
return ret;
}

dev->board_name = this_board->name;
printk(KERN_INFO "comedi board: %s, ID=0x%02x\n", dev->board_name,
readb(devpriv->mite->daq_io_addr + ID_Register));
dev_info(dev->class_dev, "board: %s, ID=0x%02x\n", dev->board_name,
readb(devpriv->mite->daq_io_addr + ID_Register));

ret = comedi_alloc_subdevices(dev, 3);
if (ret)
Expand Down Expand Up @@ -434,7 +432,7 @@ static int ni6527_attach(struct comedi_device *dev, struct comedi_devconfig *it)
ret = request_irq(mite_irq(devpriv->mite), ni6527_interrupt,
IRQF_SHARED, "ni6527", dev);
if (ret < 0)
printk(KERN_WARNING "comedi i6527 irq not available\n");
dev_warn(dev->class_dev, "irq not available\n");
else
dev->irq = mite_irq(devpriv->mite);

Expand Down Expand Up @@ -473,7 +471,7 @@ static int ni6527_find_device(struct comedi_device *dev, int bus, int slot)
}
}
}
printk(KERN_ERR "comedi 6527: no device found\n");
dev_err(dev->class_dev, "ni6527: no device found\n");
mite_list_devices();
return -EIO;
}
Expand Down

0 comments on commit 61c6838

Please sign in to comment.