aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/isdn/hisax/callc.c
diff options
context:
space:
mode:
authorHannes Eder <hannes@hanneseder.net>2009-02-25 08:11:03 -0500
committerDavid S. Miller <davem@davemloft.net>2009-02-27 04:00:42 -0500
commite86a6a1b7849217bb3b1ef725c7fee86ed6dae33 (patch)
tree0b21b43e06baf645990185fa9dbd4bdf944c6416 /drivers/isdn/hisax/callc.c
parentcf80063a7d8b1b477236e5491730c1ff71fc5577 (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/callc.c')
-rw-r--r--drivers/isdn/hisax/callc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/isdn/hisax/callc.c b/drivers/isdn/hisax/callc.c
index 7c56c44f0fd1..025a20d487c5 100644
--- a/drivers/isdn/hisax/callc.c
+++ b/drivers/isdn/hisax/callc.c
@@ -24,7 +24,6 @@
24const char *lli_revision = "$Revision: 2.59.2.4 $"; 24const char *lli_revision = "$Revision: 2.59.2.4 $";
25 25
26extern struct IsdnCard cards[]; 26extern struct IsdnCard cards[];
27extern int nrcards;
28 27
29static int init_b_st(struct Channel *chanp, int incoming); 28static int init_b_st(struct Channel *chanp, int incoming);
30static void release_b_st(struct Channel *chanp); 29static void release_b_st(struct Channel *chanp);