mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-11 03:52:39 -04:00
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: Ravishankar Karkala Mallikarjunayya <ravishankar.km@greenturtles.in> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
e265af1bfa
commit
6a8576360a
@@ -337,7 +337,7 @@ static int pcmmio_dio_insn_bits(struct comedi_device *dev,
|
||||
}
|
||||
#ifdef DAMMIT_ITS_BROKEN
|
||||
/* DEBUG */
|
||||
printk("data_out_byte %02x\n", (unsigned)byte);
|
||||
printk(KERN_DEBUG "data_out_byte %02x\n", (unsigned)byte);
|
||||
#endif
|
||||
/* save the digital input lines for this byte.. */
|
||||
s->state |= ((unsigned int)byte) << offset;
|
||||
|
||||
Reference in New Issue
Block a user