Commit ba8f5e66 authored by Hari Prasath Gujulan Elango's avatar Hari Prasath Gujulan Elango Committed by Greg Kroah-Hartman

staging: wilc1000: remove unused variable msg_len

This patch removes a ununsed variable msg_len and its associated code.
Signed-off-by: default avatarHari Prasath Gujulan Elango <hgujulan@visteon.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 690910c0
...@@ -513,7 +513,6 @@ static int wilc_wlan_cfg_indicate_rx(uint8_t *frame, int size, wilc_cfg_rsp_t *r ...@@ -513,7 +513,6 @@ static int wilc_wlan_cfg_indicate_rx(uint8_t *frame, int size, wilc_cfg_rsp_t *r
int ret = 1; int ret = 1;
uint8_t msg_type; uint8_t msg_type;
uint8_t msg_id; uint8_t msg_id;
uint16_t msg_len;
#ifdef WILC_FULLY_HOSTING_AP #ifdef WILC_FULLY_HOSTING_AP
u32 *ptru32Frame; u32 *ptru32Frame;
bool bStatus = frame[2]; bool bStatus = frame[2];
...@@ -528,11 +527,6 @@ static int wilc_wlan_cfg_indicate_rx(uint8_t *frame, int size, wilc_cfg_rsp_t *r ...@@ -528,11 +527,6 @@ static int wilc_wlan_cfg_indicate_rx(uint8_t *frame, int size, wilc_cfg_rsp_t *r
msg_type = frame[0]; msg_type = frame[0];
msg_id = frame[1]; /* seq no */ msg_id = frame[1]; /* seq no */
#ifdef BIG_ENDIAN
msg_len = (frame[2] << 8) | frame[3];
#else
msg_len = (frame[3] << 8) | frame[2];
#endif
frame += 4; frame += 4;
size -= 4; size -= 4;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment