mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-02 01:06:46 +09:00
Staging: comedi: fix printk issue in jr3_pci.c
This is a patch to the jr3_pci.c file that fixes up a printk warning found by the checkpatch.pl tool. Converted printks to dev_dbg(). 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
5ec8df5e46
commit
2c2fedf2c4
@@ -372,14 +372,14 @@ static int jr3_pci_open(struct comedi_device *dev)
|
||||
int i;
|
||||
struct jr3_pci_dev_private *devpriv = dev->private;
|
||||
|
||||
printk("jr3_pci_open\n");
|
||||
dev_dbg(dev->hw_dev, "jr3_pci_open\n");
|
||||
for (i = 0; i < devpriv->n_channels; i++) {
|
||||
struct jr3_pci_subdev_private *p;
|
||||
|
||||
p = dev->subdevices[i].private;
|
||||
if (p) {
|
||||
printk("serial: %p %d (%d)\n", p, p->serial_no,
|
||||
p->channel_no);
|
||||
dev_dbg(dev->hw_dev, "serial: %p %d (%d)\n", p,
|
||||
p->serial_no, p->channel_no);
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
@@ -457,8 +457,8 @@ static int jr3_download_firmware(struct comedi_device *dev, const u8 * data,
|
||||
break;
|
||||
more = more
|
||||
&& read_idm_word(data, size, &pos, &addr);
|
||||
printk("Loading#%d %4.4x bytes at %4.4x\n", i,
|
||||
count, addr);
|
||||
dev_dbg(dev->hw_dev, "Loading#%d %4.4x bytes at %4.4x\n",
|
||||
i, count, addr);
|
||||
while (more && count > 0) {
|
||||
if (addr & 0x4000) {
|
||||
/* 16 bit data, never seen in real life!! */
|
||||
|
||||
Reference in New Issue
Block a user