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

Commit 6e882d47 authored by Ravishankar's avatar Ravishankar Committed by Greg Kroah-Hartman
Browse files

Staging: comedi: fix printk issue in rtd520.c



This is a patch to the rtd520.c file that fixes up a printk  warning found by the checkpatch.pl tool

Signed-off-by: default avatarRavishankr <ravishakarkm32@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 7a981616
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -869,7 +869,7 @@ static int rtd_attach(struct comedi_device *dev, struct comedi_devconfig *it)
	}

	/* Show board configuration */
	printk("%s:", dev->board_name);
	printk(KERN_INFO "%s:", dev->board_name);

	/*
	 * Allocate the subdevice structures.  alloc_subdevice() is a
@@ -958,7 +958,7 @@ static int rtd_attach(struct comedi_device *dev, struct comedi_devconfig *it)
		return ret;
	}
	dev->irq = devpriv->pci_dev->irq;
	printk("( irq=%u )", dev->irq);
	printk(KERN_INFO "( irq=%u )", dev->irq);

	ret = rtd520_probe_fifo_depth(dev);
	if (ret < 0)