mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 13:29:17 -04:00
Staging: comedi: fix printk issue in serial2002.c
This is a patch to the serial2002.c file that fixes up a printk warning found by the checkpatch.pl tool. converted printks to dev_version. Signed-off-by: Ravishankar Karkala Mallikarjunayya <ravishankar.km@greenturtles.in> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
7e4198f47b
commit
3dbeb83c24
@@ -824,7 +824,7 @@ static int serial2002_attach(struct comedi_device *dev,
|
||||
{
|
||||
struct comedi_subdevice *s;
|
||||
|
||||
printk("comedi%d: serial2002: ", dev->minor);
|
||||
dev_dbg(dev->hw_dev, "comedi%d: attached\n", dev->minor);
|
||||
dev->board_name = thisboard->name;
|
||||
if (alloc_private(dev, sizeof(struct serial2002_private)) < 0)
|
||||
return -ENOMEM;
|
||||
@@ -832,7 +832,8 @@ static int serial2002_attach(struct comedi_device *dev,
|
||||
dev->close = serial_2002_close;
|
||||
devpriv->port = it->options[0];
|
||||
devpriv->speed = it->options[1];
|
||||
printk("/dev/ttyS%d @ %d\n", devpriv->port, devpriv->speed);
|
||||
dev_dbg(dev->hw_dev, "/dev/ttyS%d @ %d\n", devpriv->port,
|
||||
devpriv->speed);
|
||||
|
||||
if (alloc_subdevices(dev, 5) < 0)
|
||||
return -ENOMEM;
|
||||
@@ -891,7 +892,7 @@ static int serial2002_detach(struct comedi_device *dev)
|
||||
struct comedi_subdevice *s;
|
||||
int i;
|
||||
|
||||
printk("comedi%d: serial2002: remove\n", dev->minor);
|
||||
dev_dbg(dev->hw_dev, "comedi%d: remove\n", dev->minor);
|
||||
for (i = 0; i < 5; i++) {
|
||||
s = &dev->subdevices[i];
|
||||
kfree(s->maxdata_list);
|
||||
|
||||
Reference in New Issue
Block a user