From: Stephen Hemminger <shemminger@vyatta.com>
To: David Miller <davem@davemloft.net>
Cc: netdev@vger.kernel.org
Subject: [PATCH 03/15] 3c59x: get rid of non-const printk warnings
Date: Thu, 26 Feb 2009 12:19:24 -0800 [thread overview]
Message-ID: <20090226201949.304637267@vyatta.com> (raw)
In-Reply-To: 20090226201921.462146178@vyatta.com
[-- Attachment #1: 3c59x-warn.patch --]
[-- Type: text/plain, Size: 889 bytes --]
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
--- a/drivers/net/3c59x.c 2009-02-26 12:06:07.000000000 -0800
+++ b/drivers/net/3c59x.c 2009-02-26 12:12:27.000000000 -0800
@@ -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 ne
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);
--
next prev parent reply other threads:[~2009-02-26 20:20 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-26 20:19 [PATCH 00/15] Fix warnings about non-const strings Stephen Hemminger
2009-02-26 20:19 ` [PATCH 01/15] tulip: get rid of warning for non-const string literal Stephen Hemminger
2009-02-26 20:19 ` [PATCH 02/15] lapb: get rid of non-const printk warning Stephen Hemminger
2009-02-26 20:19 ` Stephen Hemminger [this message]
2009-02-26 20:19 ` [PATCH 04/15] ne2k-pci: fix non-constant printk warnings Stephen Hemminger
2009-02-26 20:19 ` [PATCH 05/15] sis900: " Stephen Hemminger
2009-02-26 20:19 ` [PATCH 06/15] yellowfin: " Stephen Hemminger
2009-02-26 20:19 ` [PATCH 07/15] acenic: " Stephen Hemminger
2009-02-26 20:19 ` [PATCH 08/15] natsemi: " Stephen Hemminger
2009-02-26 20:19 ` [PATCH 09/15] fealnx: " Stephen Hemminger
2009-02-26 20:19 ` [PATCH 10/15] via-rhine: " Stephen Hemminger
2009-02-26 20:19 ` [PATCH 11/15] starfire: " Stephen Hemminger
2009-02-26 20:19 ` [PATCH 12/15] sundance: " Stephen Hemminger
2009-02-26 20:19 ` [PATCH 13/15] hamachi: " Stephen Hemminger
2009-02-26 20:19 ` [PATCH 14/15] forcedeth: " Stephen Hemminger
2009-02-26 20:19 ` [PATCH 15/15] mdio: " Stephen Hemminger
2009-02-27 6:23 ` [PATCH 00/15] Fix warnings about non-const strings David Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090226201949.304637267@vyatta.com \
--to=shemminger@vyatta.com \
--cc=davem@davemloft.net \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).