From: Niels de Vos Date: Mon, 23 Aug 2010 16:20:52 +0000 (+0100) Subject: parport_pc: show the detection of a 2 serial port ITE8874 chip X-Git-Tag: v2.6.37-rc1~139^2~25 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6c8e4c92baaa5dc05ec7555e45711ff47adbc73c;p=thirdparty%2Flinux.git parport_pc: show the detection of a 2 serial port ITE8874 chip The printk message for the 2 serial port version is obscured with a debug macro, unlike all other versions of the card. It should be changed to make the output equal for all detected models. Reference: https://bugzilla.redhat.com/show_bug.cgi?id=578616#c1 CC: Joe Krahn Signed-off-by: Niels de Vos Signed-off-by: Jiri Kosina --- diff --git a/drivers/parport/parport_pc.c b/drivers/parport/parport_pc.c index 0950fa40684fa..8d62fb76cd41b 100644 --- a/drivers/parport/parport_pc.c +++ b/drivers/parport/parport_pc.c @@ -2599,7 +2599,7 @@ static int __devinit sio_ite_8872_probe(struct pci_dev *pdev, int autoirq, printk(KERN_INFO "parport_pc: ITE8873 found (1S)\n"); return 0; case 0x8: - DPRINTK(KERN_DEBUG "parport_pc: ITE8874 found (2S)\n"); + printk(KERN_INFO "parport_pc: ITE8874 found (2S)\n"); return 0; default: printk(KERN_INFO "parport_pc: unknown ITE887x\n");