diff options
author | Hannes Eder <hannes@hanneseder.net> | 2008-12-26 02:56:45 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-12-26 02:56:45 -0500 |
commit | dac499f912abd5838fa3501efdcd0f23d5f4fc29 (patch) | |
tree | e637b9941f223ebf8b4279520b5cc35081d8ca21 /drivers/net/s2io.c | |
parent | a08b32df1417146b1a4c43e641ec1177da51896c (diff) |
drivers/net: fix sparse warnings: make symbols static
Fix this sparse warnings:
drivers/net/3c523.c:350:6: warning: symbol 'alloc586' was not declared. Should it be static?
drivers/net/cs89x0.c:1029:14: warning: symbol 'reset_chip' was not declared. Should it be static?
drivers/net/eepro.c:1399:1: warning: symbol 'read_eeprom' was not declared. Should it be static?
drivers/net/plip.c:1020:5: warning: symbol 'plip_hard_header_cache' was not declared. Should it be static?
drivers/net/s2io.c:5116:6: warning: symbol 'do_s2io_store_unicast_mc' was not declared. Should it be static?
drivers/net/smc9194.c:767:12: warning: symbol 'smc_findirq' was not declared. Should it be static?
Signed-off-by: Hannes Eder <hannes@hanneseder.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/s2io.c')
-rw-r--r-- | drivers/net/s2io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/s2io.c b/drivers/net/s2io.c index 512861923c6b..748b4cb3a58a 100644 --- a/drivers/net/s2io.c +++ b/drivers/net/s2io.c | |||
@@ -5113,7 +5113,7 @@ static void s2io_set_multicast(struct net_device *dev) | |||
5113 | /* read from CAM unicast & multicast addresses and store it in | 5113 | /* read from CAM unicast & multicast addresses and store it in |
5114 | * def_mac_addr structure | 5114 | * def_mac_addr structure |
5115 | */ | 5115 | */ |
5116 | void do_s2io_store_unicast_mc(struct s2io_nic *sp) | 5116 | static void do_s2io_store_unicast_mc(struct s2io_nic *sp) |
5117 | { | 5117 | { |
5118 | int offset; | 5118 | int offset; |
5119 | u64 mac_addr = 0x0; | 5119 | u64 mac_addr = 0x0; |