From: Jes Sorensen Date: Fri, 9 May 2014 13:04:09 +0000 (+0200) Subject: staging: rtl8723au: Declare c2h_evt_hdl static X-Git-Tag: firefly_0821_release~176^2~3465^2~39^2~952 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ab281e3ba9ebf8b7b7e0bf4672256b145882c2b0;p=firefly-linux-kernel-4.4.55.git staging: rtl8723au: Declare c2h_evt_hdl static Signed-off-by: Jes Sorensen Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8723au/core/rtw_cmd.c b/drivers/staging/rtl8723au/core/rtw_cmd.c index 8609dce66c46..9cb580e34a26 100644 --- a/drivers/staging/rtl8723au/core/rtw_cmd.c +++ b/drivers/staging/rtl8723au/core/rtw_cmd.c @@ -1297,10 +1297,10 @@ exit: return res; } -s32 c2h_evt_hdl(struct rtw_adapter *adapter, struct c2h_evt_hdr *c2h_evt, - c2h_id_filter filter) +static int c2h_evt_hdl(struct rtw_adapter *adapter, + struct c2h_evt_hdr *c2h_evt, c2h_id_filter filter) { - s32 ret = _FAIL; + int ret = _FAIL; u8 buf[16]; if (!c2h_evt) { diff --git a/drivers/staging/rtl8723au/include/osdep_service.h b/drivers/staging/rtl8723au/include/osdep_service.h index f2a8d2acf789..f595c85b5404 100644 --- a/drivers/staging/rtl8723au/include/osdep_service.h +++ b/drivers/staging/rtl8723au/include/osdep_service.h @@ -138,6 +138,4 @@ void _rtw_init_queue23a(struct rtw_queue *pqueue); #define RTW_GET_BE24(a) ((((u32) (a)[0]) << 16) | (((u32) (a)[1]) << 8) | \ ((u32) (a)[2])) -s32 c2h_evt_hdl(struct rtw_adapter *adapter, struct c2h_evt_hdr *c2h_evt, c2h_id_filter filter); - #endif