mirror of
https://github.com/torvalds/linux.git
synced 2024-12-24 03:42:52 +00:00
Staging: comedi: fix printk issue in dt3000.c
This is a patch to the dt3000.c file that fixes up a printk warning found by the checkpatch.pl tool. Converted printks to dev_<levels>. Signed-off-by: Ravishankar Karkala Mallikarjunayya <ravishankar.km@greenturtles.in> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
441ab50f20
commit
b6b31e972d
@ -352,7 +352,8 @@ static int dt3k_send_cmd(struct comedi_device *dev, unsigned int cmd)
|
||||
if ((status & DT3000_COMPLETION_MASK) == DT3000_NOERROR)
|
||||
return 0;
|
||||
|
||||
printk("dt3k_send_cmd() timeout/error status=0x%04x\n", status);
|
||||
dev_dbg(dev->hw_dev, "dt3k_send_cmd() timeout/error status=0x%04x\n",
|
||||
status);
|
||||
|
||||
return -ETIME;
|
||||
}
|
||||
@ -452,7 +453,7 @@ static void dt3k_ai_empty_fifo(struct comedi_device *dev,
|
||||
if (count < 0)
|
||||
count += AI_FIFO_DEPTH;
|
||||
|
||||
printk("reading %d samples\n", count);
|
||||
dev_dbg(dev->hw_dev, "reading %d samples\n", count);
|
||||
|
||||
rear = devpriv->ai_rear;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user