can: slcan/vcan: eliminate banner[] variable, switch to pr_info()
authorJeremiah Mahler <jmmahler@gmail.com>
Wed, 3 Dec 2014 08:44:04 +0000 (00:44 -0800)
committerMarc Kleine-Budde <mkl@pengutronix.de>
Sun, 7 Dec 2014 20:22:05 +0000 (21:22 +0100)
commitace9bb228de3ef5752d6aa8e17c84a8488a26346
tree44e8350ed74c47692b93021e10b340a1c2016cac
parentb111b78c6ea52690a47f16922cb41c78f08dd298
can: slcan/vcan: eliminate banner[] variable, switch to pr_info()

Several can modules in drivers/net/can use a banner[] variable at the
top which defines a string that is used once during init.  This string
is also embedded with KERN_INFO which makes it printk() specific.

Improve the code by eliminating the banner[] variable and moving the
string to where it is printed.  Then switch from printk(KERN_INFO to
pr_info() for the lines that were changed.

This patch is similar to [1] which was applied to net/can.

  [1]: https://lkml.org/lkml/2014/11/22/10

Signed-off-by: Jeremiah Mahler <jmmahler@gmail.com>
Acked-by: Oliver Hartkopp <socketcan@hartkopp.net>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
drivers/net/can/slcan.c
drivers/net/can/vcan.c