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

Commit 354aaf96 authored by Breno Leitão's avatar Breno Leitão Committed by Greg Kroah-Hartman
Browse files

jsm: Rewriting a bad log message



Actually jsm displays "Device Added" 8 times (for a 8 port device).
This silly patch just makes things more informative, showing
the port (instead of the device) that was added.

Signed-off-by: default avatarBreno Leitão <leitao@linux.vnet.ibm.com>
Cc: Scott Kilau <scottk@digi.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent a88a477f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -472,7 +472,7 @@ int __devinit jsm_uart_port_init(struct jsm_board *brd)
		if (uart_add_one_port (&jsm_uart_driver, &brd->channels[i]->uart_port))
			printk(KERN_INFO "jsm: add device failed\n");
		else
			printk(KERN_INFO "Added device \n");
			printk(KERN_INFO "jsm: Port %d added\n", i);
	}

	jsm_printk(INIT, INFO, &brd->pci_dev, "finish\n");