]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: rtl8188eu: Remove unused function rtw_set_csa_cmd()
authornavin patidar <navin.patidar@gmail.com>
Thu, 10 Jul 2014 03:41:44 +0000 (09:11 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 10 Jul 2014 04:09:56 +0000 (21:09 -0700)
Signed-off-by: navin patidar <navin.patidar@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/core/rtw_cmd.c
drivers/staging/rtl8188eu/include/rtw_cmd.h

index ae45f378ef7acd0e64ca7ddbc5a3659d6794ff76..14d3c9905eefeb651cf24360a4925e2f21c6f918 100644 (file)
@@ -1059,41 +1059,6 @@ exit:
        return res;
 }
 
-u8 rtw_set_csa_cmd(struct adapter *padapter, u8 new_ch_no)
-{
-       struct  cmd_obj *pcmdobj;
-       struct  SetChannelSwitch_param *setChannelSwitch_param;
-       struct  cmd_priv   *pcmdpriv = &padapter->cmdpriv;
-
-       u8      res = _SUCCESS;
-
-
-       RT_TRACE(_module_rtl871x_cmd_c_, _drv_notice_, ("+rtw_set_csa_cmd\n"));
-
-       pcmdobj = kzalloc(sizeof(struct cmd_obj), GFP_KERNEL);
-       if (pcmdobj == NULL) {
-               res = _FAIL;
-               goto exit;
-       }
-
-       setChannelSwitch_param = kzalloc(sizeof(struct  SetChannelSwitch_param), GFP_KERNEL);
-       if (setChannelSwitch_param == NULL) {
-               kfree(pcmdobj);
-               res = _FAIL;
-               goto exit;
-       }
-
-       setChannelSwitch_param->new_ch_no = new_ch_no;
-
-       init_h2fwcmd_w_parm_no_rsp(pcmdobj, setChannelSwitch_param, GEN_CMD_CODE(_SetChannelSwitch));
-       res = rtw_enqueue_cmd(pcmdpriv, pcmdobj);
-
-exit:
-
-
-       return res;
-}
-
 u8 rtw_tdls_cmd(struct adapter *padapter, u8 *addr, u8 option)
 {
        return _SUCCESS;
index 6ed4a90a302659a6a5601d62f156a500a3d2bde2..108cf30a54cfa2a6b63c372a750524cfe17661ef 100644 (file)
@@ -756,7 +756,6 @@ u8 rtw_chk_hi_queue_cmd(struct adapter *padapter);
 #endif
 
 u8 rtw_set_chplan_cmd(struct adapter *padapter, u8 chplan, u8 enqueue);
-u8 rtw_set_csa_cmd(struct adapter *padapter, u8 new_ch_no);
 u8 rtw_tdls_cmd(struct adapter *padapter, u8 *addr, u8 option);
 
 u8 rtw_drvextra_cmd_hdl(struct adapter *padapter, unsigned char *pbuf);