staging: rtl8723bs: Change type of variables and return type
authorMadhumitha Prabakaran <madhumithabiw@gmail.com>
Sun, 17 Mar 2019 21:33:55 +0000 (16:33 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 18 Mar 2019 06:45:27 +0000 (07:45 +0100)
Change type of local variables 'res' and return type of functions
'rtw_init_cmd_pri' and 'rtw_init_evt_priv', as function's
return types are defined for standard error codes _SUCCESS and _FAIL.
Also, change return type of functions declarations corresponding to
change made in function definitions.

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

index 793bc505fa9c38b4153e520782066173d15f02d8..ab450f717f34a07de2114ca533ef9b690c45e316 100644 (file)
@@ -162,9 +162,9 @@ Caller and the rtw_cmd_thread can protect cmd_q by spin_lock.
 No irqsave is necessary.
 */
 
-sint rtw_init_cmd_priv(struct  cmd_priv *pcmdpriv)
+int rtw_init_cmd_priv(struct   cmd_priv *pcmdpriv)
 {
-       sint res = _SUCCESS;
+       int res = _SUCCESS;
 
        init_completion(&pcmdpriv->cmd_queue_comp);
        init_completion(&pcmdpriv->terminate_cmdthread_comp);
@@ -201,9 +201,9 @@ exit:
 }
 
 static void c2h_wk_callback(_workitem *work);
-sint rtw_init_evt_priv(struct evt_priv *pevtpriv)
+int rtw_init_evt_priv(struct evt_priv *pevtpriv)
 {
-       sint res = _SUCCESS;
+       int res = _SUCCESS;
 
        /* allocate DMA-able/Non-Page memory for cmd_buf and rsp_buf */
        atomic_set(&pevtpriv->event_seq, 0);
index 8ed913726d5a8f9da8c708d2e86cf1df8cf57f4f..06ab48263757355ed95a8ddab227006e9ce86a04 100644 (file)
@@ -8,8 +8,8 @@
 #define __CMD_OSDEP_H_
 
 
-sint rtw_init_cmd_priv(struct  cmd_priv *pcmdpriv);
-sint rtw_init_evt_priv(struct evt_priv *pevtpriv);
+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);