diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2009-02-26 05:19:24 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-02-27 01:21:54 -0500 |
commit | 86de79b6d058df87fdf025c6c484b37340fb0205 (patch) | |
tree | f35f9bd97ef362e7c11e67b79293815a49e6822f /drivers/net/3c59x.c | |
parent | 81b700b1ed496cf21e7ed5991c80dfe5e6723266 (diff) |
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>
Diffstat (limited to 'drivers/net/3c59x.c')
-rw-r--r-- | drivers/net/3c59x.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/3c59x.c b/drivers/net/3c59x.c index b2563d384cf2..c56698402420 100644 --- a/drivers/net/3c59x.c +++ b/drivers/net/3c59x.c | |||
@@ -102,8 +102,8 @@ static int vortex_debug = 1; | |||
102 | #include <linux/delay.h> | 102 | #include <linux/delay.h> |
103 | 103 | ||
104 | 104 | ||
105 | static char version[] __devinitdata = | 105 | static const char version[] __devinitconst = |
106 | DRV_NAME ": Donald Becker and others.\n"; | 106 | DRV_NAME ": Donald Becker and others.\n"; |
107 | 107 | ||
108 | MODULE_AUTHOR("Donald Becker <becker@scyld.com>"); | 108 | MODULE_AUTHOR("Donald Becker <becker@scyld.com>"); |
109 | MODULE_DESCRIPTION("3Com 3c59x/3c9xx ethernet driver "); | 109 | MODULE_DESCRIPTION("3Com 3c59x/3c9xx ethernet driver "); |
@@ -2908,7 +2908,7 @@ static void vortex_get_drvinfo(struct net_device *dev, | |||
2908 | strcpy(info->bus_info, pci_name(VORTEX_PCI(vp))); | 2908 | strcpy(info->bus_info, pci_name(VORTEX_PCI(vp))); |
2909 | } else { | 2909 | } else { |
2910 | if (VORTEX_EISA(vp)) | 2910 | if (VORTEX_EISA(vp)) |
2911 | sprintf(info->bus_info, dev_name(vp->gendev)); | 2911 | strcpy(info->bus_info, dev_name(vp->gendev)); |
2912 | else | 2912 | else |
2913 | sprintf(info->bus_info, "EISA 0x%lx %d", | 2913 | sprintf(info->bus_info, "EISA 0x%lx %d", |
2914 | dev->base_addr, dev->irq); | 2914 | dev->base_addr, dev->irq); |