staging: rtl8723bs: delete function rtw_set_chplan_cmd
authorNam Cao <namcaov@gmail.com>
Fri, 2 Sep 2022 09:51:52 +0000 (11:51 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 9 Sep 2022 07:49:47 +0000 (09:49 +0200)
The function rtw_set_chplan_cmd is not used. Remove it.

Signed-off-by: Nam Cao <namcaov@gmail.com>
Link: https://lore.kernel.org/r/b5a1fe5bc7bc8eb154247ee8eafafe6af266dab9.1662111798.git.namcaov@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/core/rtw_cmd.c
drivers/staging/rtl8723bs/include/rtw_cmd.h

index a5e66b9868ad02c1c3ee1140da1da392166fea97..5e82d491ad756d9c1bc2e4db7c7d8c4fdd314faa 100644 (file)
@@ -1111,61 +1111,6 @@ exit:
        return res;
 }
 
-u8 rtw_set_chplan_cmd(struct adapter *padapter, u8 chplan, u8 enqueue, u8 swconfig)
-{
-       struct  cmd_obj *pcmdobj;
-       struct  SetChannelPlan_param *setChannelPlan_param;
-       struct  cmd_priv   *pcmdpriv = &padapter->cmdpriv;
-
-       u8 res = _SUCCESS;
-
-       /*  check if allow software config */
-       if (swconfig && rtw_hal_is_disable_sw_channel_plan(padapter)) {
-               res = _FAIL;
-               goto exit;
-       }
-
-       /* check input parameter */
-       if (!rtw_is_channel_plan_valid(chplan)) {
-               res = _FAIL;
-               goto exit;
-       }
-
-       /* prepare cmd parameter */
-       setChannelPlan_param = rtw_zmalloc(sizeof(struct SetChannelPlan_param));
-       if (!setChannelPlan_param) {
-               res = _FAIL;
-               goto exit;
-       }
-       setChannelPlan_param->channel_plan = chplan;
-
-       if (enqueue) {
-               /* need enqueue, prepare cmd_obj and enqueue */
-               pcmdobj = rtw_zmalloc(sizeof(struct cmd_obj));
-               if (!pcmdobj) {
-                       kfree(setChannelPlan_param);
-                       res = _FAIL;
-                       goto exit;
-               }
-
-               init_h2fwcmd_w_parm_no_rsp(pcmdobj, setChannelPlan_param, GEN_CMD_CODE(_SetChannelPlan));
-               res = rtw_enqueue_cmd(pcmdpriv, pcmdobj);
-       } else {
-               /* no need to enqueue, do the cmd hdl directly and free cmd parameter */
-               if (set_chplan_hdl(padapter, (unsigned char *)setChannelPlan_param) != H2C_SUCCESS)
-                       res = _FAIL;
-
-               kfree(setChannelPlan_param);
-       }
-
-       /* do something based on res... */
-       if (res == _SUCCESS)
-               padapter->mlmepriv.ChannelPlan = chplan;
-
-exit:
-       return res;
-}
-
 static void collect_traffic_statistics(struct adapter *padapter)
 {
        struct dvobj_priv *pdvobjpriv = adapter_to_dvobj(padapter);
index 0af8215e2f2f718a36c72d165f9ce95596ad3615..fe1b0310120352ab0053bee2c6ec87f75638da58 100644 (file)
@@ -612,8 +612,6 @@ extern u8 rtw_ps_cmd(struct adapter *padapter);
 
 u8 rtw_chk_hi_queue_cmd(struct adapter *padapter);
 
-extern u8 rtw_set_chplan_cmd(struct adapter *padapter, u8 chplan, u8 enqueue, u8 swconfig);
-
 extern u8 rtw_c2h_packet_wk_cmd(struct adapter *padapter, u8 *pbuf, u16 length);
 extern u8 rtw_c2h_wk_cmd(struct adapter *padapter, u8 *c2h_evt);