mirror of https://gitee.com/openkylin/linux.git
3c59x: get rid of non-const printk warnings
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
81b700b1ed
commit
86de79b6d0
|
@ -102,8 +102,8 @@ static int vortex_debug = 1;
|
|||
#include <linux/delay.h>
|
||||
|
||||
|
||||
static char version[] __devinitdata =
|
||||
DRV_NAME ": Donald Becker and others.\n";
|
||||
static const char version[] __devinitconst =
|
||||
DRV_NAME ": Donald Becker and others.\n";
|
||||
|
||||
MODULE_AUTHOR("Donald Becker <becker@scyld.com>");
|
||||
MODULE_DESCRIPTION("3Com 3c59x/3c9xx ethernet driver ");
|
||||
|
@ -2908,7 +2908,7 @@ static void vortex_get_drvinfo(struct net_device *dev,
|
|||
strcpy(info->bus_info, pci_name(VORTEX_PCI(vp)));
|
||||
} else {
|
||||
if (VORTEX_EISA(vp))
|
||||
sprintf(info->bus_info, dev_name(vp->gendev));
|
||||
strcpy(info->bus_info, dev_name(vp->gendev));
|
||||
else
|
||||
sprintf(info->bus_info, "EISA 0x%lx %d",
|
||||
dev->base_addr, dev->irq);
|
||||
|
|
Loading…
Reference in New Issue