Commit 6a857636 authored by Ravishankar Karkala Mallikarjunayya's avatar Ravishankar Karkala Mallikarjunayya Committed by Greg Kroah-Hartman

Staging: comedi: fix printk issue in pcmmio.c

This is a patch to the pcmmio.c file that fixes up a printk warning
found by the checkpatch.pl tool.
Signed-off-by: default avatarRavishankar Karkala Mallikarjunayya <ravishankar.km@greenturtles.in>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e265af1b
...@@ -337,7 +337,7 @@ static int pcmmio_dio_insn_bits(struct comedi_device *dev, ...@@ -337,7 +337,7 @@ static int pcmmio_dio_insn_bits(struct comedi_device *dev,
} }
#ifdef DAMMIT_ITS_BROKEN #ifdef DAMMIT_ITS_BROKEN
/* DEBUG */ /* DEBUG */
printk("data_out_byte %02x\n", (unsigned)byte); printk(KERN_DEBUG "data_out_byte %02x\n", (unsigned)byte);
#endif #endif
/* save the digital input lines for this byte.. */ /* save the digital input lines for this byte.. */
s->state |= ((unsigned int)byte) << offset; s->state |= ((unsigned int)byte) << offset;
......
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