Commit de1201ea authored by Ravishankar karkala Mallikarjunayya's avatar Ravishankar karkala Mallikarjunayya Committed by Greg Kroah-Hartman

Staging: comedi: fix printk issue in pcmuio.c

This is a patch to the pcmuio.c file that fixes up a printk
warning found by the checkpatch.pl tool.

Converted printks to dev_functions.
Signed-off-by: default avatarRavishankar Karkala Mallikarjunayya <ravishankar.km@greenturtles.in>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 750d80bd
...@@ -295,15 +295,15 @@ static int pcmuio_attach(struct comedi_device *dev, struct comedi_devconfig *it) ...@@ -295,15 +295,15 @@ static int pcmuio_attach(struct comedi_device *dev, struct comedi_devconfig *it)
irq[0] = it->options[1]; irq[0] = it->options[1];
irq[1] = it->options[2]; irq[1] = it->options[2];
printk("comedi%d: %s: io: %lx ", dev->minor, driver.driver_name, dev_dbg(dev->hw_dev, "comedi%d: %s: io: %lx attached\n", dev->minor,
iobase); driver.driver_name, iobase);
dev->iobase = iobase; dev->iobase = iobase;
if (!iobase || !request_region(iobase, if (!iobase || !request_region(iobase,
thisboard->num_asics * ASIC_IOSIZE, thisboard->num_asics * ASIC_IOSIZE,
driver.driver_name)) { driver.driver_name)) {
printk("I/O port conflict\n"); dev_err(dev->hw_dev, "I/O port conflict\n");
return -EIO; return -EIO;
} }
...@@ -318,7 +318,7 @@ static int pcmuio_attach(struct comedi_device *dev, struct comedi_devconfig *it) ...@@ -318,7 +318,7 @@ static int pcmuio_attach(struct comedi_device *dev, struct comedi_devconfig *it)
* convenient macro defined in comedidev.h. * convenient macro defined in comedidev.h.
*/ */
if (alloc_private(dev, sizeof(struct pcmuio_private)) < 0) { if (alloc_private(dev, sizeof(struct pcmuio_private)) < 0) {
printk("cannot allocate private data structure\n"); dev_warn(dev->hw_dev, "cannot allocate private data structure\n");
return -ENOMEM; return -ENOMEM;
} }
...@@ -337,7 +337,7 @@ static int pcmuio_attach(struct comedi_device *dev, struct comedi_devconfig *it) ...@@ -337,7 +337,7 @@ static int pcmuio_attach(struct comedi_device *dev, struct comedi_devconfig *it)
kcalloc(n_subdevs, sizeof(struct pcmuio_subdev_private), kcalloc(n_subdevs, sizeof(struct pcmuio_subdev_private),
GFP_KERNEL); GFP_KERNEL);
if (!devpriv->sprivs) { if (!devpriv->sprivs) {
printk("cannot allocate subdevice private data structures\n"); dev_warn(dev->hw_dev, "cannot allocate subdevice private data structures\n");
return -ENOMEM; return -ENOMEM;
} }
/* /*
...@@ -348,7 +348,7 @@ static int pcmuio_attach(struct comedi_device *dev, struct comedi_devconfig *it) ...@@ -348,7 +348,7 @@ static int pcmuio_attach(struct comedi_device *dev, struct comedi_devconfig *it)
* 96-channel version of the board. * 96-channel version of the board.
*/ */
if (alloc_subdevices(dev, n_subdevs) < 0) { if (alloc_subdevices(dev, n_subdevs) < 0) {
printk("cannot allocate subdevice data structures\n"); dev_dbg(dev->hw_dev, "cannot allocate subdevice data structures\n");
return -ENOMEM; return -ENOMEM;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment