staging: rtl8723bs: Change type of variables and return type
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>
This commit is contained in:
parent
cfc7ef7403
commit
b1c30bd6b7
@ -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);
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user