Staging: rtl8723bs: Change return type and type of local variable
authorMadhumitha Prabakaran <madhumithabiw@gmail.com>
Wed, 20 Mar 2019 23:02:02 +0000 (18:02 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 21 Mar 2019 07:25:01 +0000 (08:25 +0100)
rtw_startbss_cmd can return the result of calling rtw_enqueue_cmd, which
can return the result of calling _rtw_enqueue_cmd, but they all have
different return types (u8, u32, and sint, respectively).

As all of these functions return error codes, change all the return types
to int, in preparation for converting these functions to use standard
kernel error codes.

Also, remove extern from the function declaration to maintain Linux kernel
coding style.

Issue suggested by Coccinelle.

Signed-off-by: Madhumitha Prabakaran <madhumithabiw@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/core/rtw_cmd.c
drivers/staging/rtl8723bs/include/cmd_osdep.h
drivers/staging/rtl8723bs/include/rtw_cmd.h

index bd3a5a23a418b07fa70cec34711612f28655beed..04c6927dab8b38391c17215e76794ee7c09646e5 100644 (file)
@@ -256,7 +256,7 @@ ISR/Call-Back functions can't call this sub-function.
 
 */
 
-sint   _rtw_enqueue_cmd(struct __queue *queue, struct cmd_obj *obj)
+int _rtw_enqueue_cmd(struct __queue *queue, struct cmd_obj *obj)
 {
        _irqL irqL;
 
@@ -331,7 +331,7 @@ int rtw_cmd_filter(struct cmd_priv *pcmdpriv, struct cmd_obj *cmd_obj)
 
 
 
-u32 rtw_enqueue_cmd(struct cmd_priv *pcmdpriv, struct cmd_obj *cmd_obj)
+int rtw_enqueue_cmd(struct cmd_priv *pcmdpriv, struct cmd_obj *cmd_obj)
 {
        int res = _FAIL;
        struct adapter *padapter = pcmdpriv->padapter;
@@ -719,12 +719,12 @@ exit:
        return res;
 }
 
-u8 rtw_startbss_cmd(struct adapter  *padapter, int flags)
+int rtw_startbss_cmd(struct adapter  *padapter, int flags)
 {
        struct cmd_obj *pcmd;
        struct cmd_priv  *pcmdpriv = &padapter->cmdpriv;
        struct submit_ctx sctx;
-       u8 res = _SUCCESS;
+       int res = _SUCCESS;
 
        if (flags & RTW_CMDF_DIRECTLY) {
                /* no need to enqueue, do the cmd hdl directly and free cmd parameter */
index 06ab48263757355ed95a8ddab227006e9ce86a04..d3af9f44ad59feb41655c0443a969d482f73121d 100644 (file)
@@ -12,7 +12,7 @@ int rtw_init_cmd_priv(struct  cmd_priv *pcmdpriv);
 int rtw_init_evt_priv(struct evt_priv *pevtpriv);
 extern void _rtw_free_evt_priv (struct evt_priv *pevtpriv);
 extern void _rtw_free_cmd_priv (struct cmd_priv *pcmdpriv);
-extern sint _rtw_enqueue_cmd(struct __queue *queue, struct cmd_obj *obj);
+int _rtw_enqueue_cmd(struct __queue *queue, struct cmd_obj *obj);
 extern struct  cmd_obj *_rtw_dequeue_cmd(struct __queue *queue);
 
 #endif
index fa4ebc3d7539f8c5c7c61f6ec3004c6813fb5d7c..b83824ca2e31f0743b7637618007aa24bd6aa041 100644 (file)
@@ -122,7 +122,7 @@ struct P2P_PS_CTWPeriod_t {
        u8 CTWPeriod;   /* TU */
 };
 
-extern u32 rtw_enqueue_cmd(struct cmd_priv *pcmdpriv, struct cmd_obj *obj);
+int rtw_enqueue_cmd(struct cmd_priv *pcmdpriv, struct cmd_obj *obj);
 extern struct cmd_obj *rtw_dequeue_cmd(struct cmd_priv *pcmdpriv);
 extern void rtw_free_cmd_obj(struct cmd_obj *pcmd);
 
@@ -827,7 +827,7 @@ Result:
 
 u8 rtw_sitesurvey_cmd(struct adapter  *padapter, struct ndis_802_11_ssid *ssid, int ssid_num, struct rtw_ieee80211_channel *ch, int ch_num);
 extern u8 rtw_createbss_cmd(struct adapter  *padapter);
-u8 rtw_startbss_cmd(struct adapter  *padapter, int flags);
+int rtw_startbss_cmd(struct adapter  *padapter, int flags);
 
 struct sta_info;
 extern u8 rtw_setstakey_cmd(struct adapter  *padapter, struct sta_info *sta, u8 unicast_key, bool enqueue);