Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 53fa8c46 authored by Güngör Erseymen's avatar Güngör Erseymen Committed by Greg Kroah-Hartman
Browse files

Staging: comedi: ssv_dnp: fix checkpatch.pl warning



Fix checkpatch.pl warning about printk issue by merging two printk
calls into one dev_info call.

Signed-off-by: default avatarGüngör Erseymen <gelurine@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3cf05ddb
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -177,8 +177,6 @@ static int dnp_attach(struct comedi_device *dev, struct comedi_devconfig *it)
	struct comedi_subdevice *s;
	int ret;

	printk(KERN_INFO "comedi%d: dnp: ", dev->minor);

	dev->board_name = board->name;

	ret = comedi_alloc_subdevices(dev, 1);
@@ -195,8 +193,6 @@ static int dnp_attach(struct comedi_device *dev, struct comedi_devconfig *it)
	s->insn_bits = dnp_dio_insn_bits;
	s->insn_config = dnp_dio_insn_config;

	printk("attached\n");

	/* We use the I/O ports 0x22,0x23 and 0xa3-0xa9, which are always
	 * allocated for the primary 8259, so we don't need to allocate them
	 * ourselves. */
@@ -209,6 +205,7 @@ static int dnp_attach(struct comedi_device *dev, struct comedi_devconfig *it)
	outb(PCMR, CSCIR);
	outb((inb(CSCDR) & 0xAA), CSCDR);

	dev_info(dev->class_dev, "%s: attached\n", dev->board_name);
	return 1;
}