diff options
author | Hannes Eder <hannes@hanneseder.net> | 2009-02-25 08:11:03 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-02-27 04:00:42 -0500 |
commit | e86a6a1b7849217bb3b1ef725c7fee86ed6dae33 (patch) | |
tree | 0b21b43e06baf645990185fa9dbd4bdf944c6416 /drivers/isdn/hisax/config.c | |
parent | cf80063a7d8b1b477236e5491730c1ff71fc5577 (diff) |
drivers/isdn/hisax: fix sparse warning: Should it be static?
Impact: Move declarations to a header file.
Fix this sparse warning:
drivers/isdn/hisax/callc.c:24:12: warning: symbol 'lli_revision' was not declared. Should it be static?
drivers/isdn/hisax/config.c:84:12: warning: symbol 'CardType' was not declared. Should it be static?
drivers/isdn/hisax/config.c:362:5: warning: symbol 'nrcards' was not declared. Should it be static?
drivers/isdn/hisax/isdnl1.c:21:12: warning: symbol 'l1_revision' was not declared. Should it be static?
drivers/isdn/hisax/isdnl2.c:22:12: warning: symbol 'l2_revision' was not declared. Should it be static?
drivers/isdn/hisax/isdnl3.c:22:12: warning: symbol 'l3_revision' was not declared. Should it be static?
drivers/isdn/hisax/tei.c:23:12: warning: symbol 'tei_revision' 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/isdn/hisax/config.c')
-rw-r--r-- | drivers/isdn/hisax/config.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/isdn/hisax/config.c b/drivers/isdn/hisax/config.c index ded9d0baf607..4fab18d4d02f 100644 --- a/drivers/isdn/hisax/config.c +++ b/drivers/isdn/hisax/config.c | |||
@@ -361,12 +361,6 @@ module_param_array(io1, int, NULL, 0); | |||
361 | 361 | ||
362 | int nrcards; | 362 | int nrcards; |
363 | 363 | ||
364 | extern const char *l1_revision; | ||
365 | extern const char *l2_revision; | ||
366 | extern const char *l3_revision; | ||
367 | extern const char *lli_revision; | ||
368 | extern const char *tei_revision; | ||
369 | |||
370 | char *HiSax_getrev(const char *revision) | 364 | char *HiSax_getrev(const char *revision) |
371 | { | 365 | { |
372 | char *rev; | 366 | char *rev; |