diff options
author | Hannes Eder <hannes@hanneseder.net> | 2009-02-14 06:43:15 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-02-17 20:37:59 -0500 |
commit | 6e470d261326801ff823a3b7a49581a8baae8698 (patch) | |
tree | 4c563eb2f8fe5b3c994424d65cc7c3c57263cc83 /drivers/net/skfp/hwmtm.c | |
parent | 37d37695ef34b04ecf20586c12ec0c932283a130 (diff) |
drivers/net/skfp: fix sparse warning: Should it be static?
Impact: Move function declarations to header file.
Fix this sparse warnings:
drivers/net/skfp/cfm.c:146:6: warning: symbol 'all_selection_criteria' was not declared. Should it be static?
drivers/net/skfp/drvfbi.c:186:6: warning: symbol 'mac1_irq' was not declared. Should it be static?
drivers/net/skfp/drvfbi.c:284:6: warning: symbol 'read_address' was not declared. Should it be static?
drivers/net/skfp/drvfbi.c:323:6: warning: symbol 'init_board' was not declared. Should it be static?
drivers/net/skfp/fplustm.c:72:24: warning: symbol 'fddi_broadcast' was not declared. Should it be static?
drivers/net/skfp/fplustm.c:679:6: warning: symbol 'mac2_irq' was not declared. Should it be static?
drivers/net/skfp/fplustm.c:805:6: warning: symbol 'mac3_irq' was not declared. Should it be static?
drivers/net/skfp/fplustm.c:856:5: warning: symbol 'init_fplus' was not declared. Should it be static?
drivers/net/skfp/pcmplc.c:404:6: warning: symbol 'init_plc' was not declared. Should it be static?
drivers/net/skfp/pcmplc.c:1592:5: warning: symbol 'pcm_status_twisted' was not declared. Should it be static?
drivers/net/skfp/smtinit.c:68:5: warning: symbol 'init_smt' 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/skfp/hwmtm.c')
-rw-r--r-- | drivers/net/skfp/hwmtm.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/net/skfp/hwmtm.c b/drivers/net/skfp/hwmtm.c index 4218e97033c9..d322f1b702ac 100644 --- a/drivers/net/skfp/hwmtm.c +++ b/drivers/net/skfp/hwmtm.c | |||
@@ -97,23 +97,15 @@ static void mac_drv_clear_txd(struct s_smc *smc); | |||
97 | 97 | ||
98 | extern void* mac_drv_get_space(struct s_smc *smc, unsigned int size); | 98 | extern void* mac_drv_get_space(struct s_smc *smc, unsigned int size); |
99 | extern void* mac_drv_get_desc_mem(struct s_smc *smc, unsigned int size); | 99 | extern void* mac_drv_get_desc_mem(struct s_smc *smc, unsigned int size); |
100 | extern void init_board(struct s_smc *smc, u_char *mac_addr); | ||
101 | extern void mac_drv_fill_rxd(struct s_smc *smc); | 100 | extern void mac_drv_fill_rxd(struct s_smc *smc); |
102 | extern void plc1_irq(struct s_smc *smc); | ||
103 | extern void mac_drv_tx_complete(struct s_smc *smc, | 101 | extern void mac_drv_tx_complete(struct s_smc *smc, |
104 | volatile struct s_smt_fp_txd *txd); | 102 | volatile struct s_smt_fp_txd *txd); |
105 | extern void plc2_irq(struct s_smc *smc); | ||
106 | extern void mac1_irq(struct s_smc *smc, u_short stu, u_short stl); | ||
107 | extern void mac2_irq(struct s_smc *smc, u_short code_s2u, u_short code_s2l); | ||
108 | extern void mac3_irq(struct s_smc *smc, u_short code_s3u, u_short code_s3l); | ||
109 | extern void timer_irq(struct s_smc *smc); | ||
110 | extern void mac_drv_rx_complete(struct s_smc *smc, | 103 | extern void mac_drv_rx_complete(struct s_smc *smc, |
111 | volatile struct s_smt_fp_rxd *rxd, | 104 | volatile struct s_smt_fp_rxd *rxd, |
112 | int frag_count, int len); | 105 | int frag_count, int len); |
113 | extern void mac_drv_requeue_rxd(struct s_smc *smc, | 106 | extern void mac_drv_requeue_rxd(struct s_smc *smc, |
114 | volatile struct s_smt_fp_rxd *rxd, | 107 | volatile struct s_smt_fp_rxd *rxd, |
115 | int frag_count); | 108 | int frag_count); |
116 | extern void init_plc(struct s_smc *smc); | ||
117 | extern void mac_drv_clear_rxd(struct s_smc *smc, | 109 | extern void mac_drv_clear_rxd(struct s_smc *smc, |
118 | volatile struct s_smt_fp_rxd *rxd, int frag_count); | 110 | volatile struct s_smt_fp_rxd *rxd, int frag_count); |
119 | 111 | ||
@@ -136,7 +128,6 @@ extern void dma_complete(struct s_smc *smc, volatile union s_fp_descr *descr, | |||
136 | int flag); | 128 | int flag); |
137 | #endif | 129 | #endif |
138 | 130 | ||
139 | extern int init_fplus(struct s_smc *smc); | ||
140 | extern int mac_drv_rx_init(struct s_smc *smc, int len, int fc, char *look_ahead, | 131 | extern int mac_drv_rx_init(struct s_smc *smc, int len, int fc, char *look_ahead, |
141 | int la_len); | 132 | int la_len); |
142 | 133 | ||