diff options
author | Hannes Eder <hannes@hanneseder.net> | 2008-12-16 04:17:33 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-12-16 04:17:33 -0500 |
commit | 4ee59d54c3f91f1f3ad7f2856b27981414430f9e (patch) | |
tree | e2b162080515d912d87a66e37519b5f53478f765 /drivers/isdn/hardware/eicon/di.c | |
parent | b1879204dda06a92a4ff55b681c99ee185180003 (diff) |
isdn: eicon: fix sparse warning: make global functions static
Fix this sparse warnings by making the functions static:
drivers/isdn/hardware/eicon/di.c:356:6: warning: symbol 'isdn_rc' was not declared. Should it be static?
drivers/isdn/hardware/eicon/di.c:558:6: warning: symbol 'isdn_ind' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:595:6: warning: symbol 'api_parse' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:634:6: warning: symbol 'api_save_msg' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:666:6: warning: symbol 'api_load_msg' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:3417:6: warning: symbol 'manufacturer_req' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:3745:6: warning: symbol 'manufacturer_res' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:4077:6: warning: symbol 'control_rc' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:4743:6: warning: symbol 'data_rc' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:4779:6: warning: symbol 'data_ack' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:4805:6: warning: symbol 'sig_ind' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:6173:6: warning: symbol 'SendInfo' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:6349:6: warning: symbol 'SendMultiIE' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:6468:6: warning: symbol 'nl_ind' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:7250:6: warning: symbol 'get_plci' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:7409:6: warning: symbol 'add_d' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:7427:6: warning: symbol 'add_ai' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:7448:6: warning: symbol 'add_b1' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:7912:6: warning: symbol 'add_b23' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:8709:6: warning: symbol 'nl_req_ncci' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:8731:6: warning: symbol 'send_req' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:8866:6: warning: symbol 'listen_check' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:8909:6: warning: symbol 'IndParse' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:8994:6: warning: symbol 'ie_compare' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:9003:6: warning: symbol 'find_cip' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:9071:6: warning: symbol 'SetVoiceChannel' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:9089:6: warning: symbol 'VoiceChannelOff' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:9102:6: warning: symbol 'AdvCodecSupport' was not declared. Should it be static?
drivers/isdn/hardware/eicon/message.c:9198:6: warning: symbol 'CodecIdCheck' 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/hardware/eicon/di.c')
-rw-r--r-- | drivers/isdn/hardware/eicon/di.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/drivers/isdn/hardware/eicon/di.c b/drivers/isdn/hardware/eicon/di.c index 10760b3c5eb5..b029d130eb21 100644 --- a/drivers/isdn/hardware/eicon/di.c +++ b/drivers/isdn/hardware/eicon/di.c | |||
@@ -353,13 +353,13 @@ void scom_clear_int(ADAPTER * a) | |||
353 | /*------------------------------------------------------------------*/ | 353 | /*------------------------------------------------------------------*/ |
354 | /* return code handler */ | 354 | /* return code handler */ |
355 | /*------------------------------------------------------------------*/ | 355 | /*------------------------------------------------------------------*/ |
356 | byte isdn_rc(ADAPTER * a, | 356 | static byte isdn_rc(ADAPTER *a, |
357 | byte Rc, | 357 | byte Rc, |
358 | byte Id, | 358 | byte Id, |
359 | byte Ch, | 359 | byte Ch, |
360 | word Ref, | 360 | word Ref, |
361 | dword extended_info_type, | 361 | dword extended_info_type, |
362 | dword extended_info) | 362 | dword extended_info) |
363 | { | 363 | { |
364 | ENTITY * this; | 364 | ENTITY * this; |
365 | byte e_no; | 365 | byte e_no; |
@@ -555,13 +555,13 @@ byte isdn_rc(ADAPTER * a, | |||
555 | /*------------------------------------------------------------------*/ | 555 | /*------------------------------------------------------------------*/ |
556 | /* indication handler */ | 556 | /* indication handler */ |
557 | /*------------------------------------------------------------------*/ | 557 | /*------------------------------------------------------------------*/ |
558 | byte isdn_ind(ADAPTER * a, | 558 | static byte isdn_ind(ADAPTER *a, |
559 | byte Ind, | 559 | byte Ind, |
560 | byte Id, | 560 | byte Id, |
561 | byte Ch, | 561 | byte Ch, |
562 | PBUFFER * RBuffer, | 562 | PBUFFER *RBuffer, |
563 | byte MInd, | 563 | byte MInd, |
564 | word MLength) | 564 | word MLength) |
565 | { | 565 | { |
566 | ENTITY * this; | 566 | ENTITY * this; |
567 | word clength; | 567 | word clength; |