mirror of https://gitee.com/openkylin/linux.git
drivers/net/wan: fix warning: format not a string literal and no ...
Impact: Use 'static const char[]' instead of 'static char[]'. Fix this compilation warnings: drivers/net/wan/lapbether.c: In function 'lapbeth_init_driver': drivers/net/wan/lapbether.c:441: warning: format not a string literal and no format arguments drivers/net/wan/z85230.c: In function 'z85230_init_driver': drivers/net/wan/z85230.c:1782: warning: format not a string literal and no format arguments Signed-off-by: Hannes Eder <hannes@hanneseder.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
0227abc9d0
commit
5ee0d59335
|
@ -430,7 +430,8 @@ static struct notifier_block lapbeth_dev_notifier = {
|
|||
.notifier_call = lapbeth_device_event,
|
||||
};
|
||||
|
||||
static char banner[] __initdata = KERN_INFO "LAPB Ethernet driver version 0.02\n";
|
||||
static const char banner[] __initdata =
|
||||
KERN_INFO "LAPB Ethernet driver version 0.02\n";
|
||||
|
||||
static int __init lapbeth_init_driver(void)
|
||||
{
|
||||
|
|
|
@ -1775,7 +1775,8 @@ EXPORT_SYMBOL(z8530_queue_xmit);
|
|||
/*
|
||||
* Module support
|
||||
*/
|
||||
static char banner[] __initdata = KERN_INFO "Generic Z85C30/Z85230 interface driver v0.02\n";
|
||||
static const char banner[] __initdata =
|
||||
KERN_INFO "Generic Z85C30/Z85230 interface driver v0.02\n";
|
||||
|
||||
static int __init z85230_init_driver(void)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue