提交 75327a02 编写于 作者: L Leo Kim 提交者: Greg Kroah-Hartman

staging: wilc1000: rename variable gs8lnkspd

This patch renames variable gs8lnkspd to link_speed.
Signed-off-by: NLeo Kim <leo.kim@atmel.com>
Signed-off-by: NTony Cho <tony.cho@atmel.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 144b7b23
......@@ -248,7 +248,7 @@ static u8 rcv_assoc_resp[MAX_ASSOC_RESP_FRAME_SIZE];
static bool scan_while_connected;
static s8 rssi;
static s8 gs8lnkspd;
static s8 link_speed;
static u8 gu8Chnl;
static u8 gs8SetIP[2][4];
static u8 gs8GetIP[2][4];
......@@ -2158,11 +2158,11 @@ static void Handle_GetLinkspeed(struct host_if_drv *hif_drv)
s32 s32Error = 0;
struct wid strWID;
gs8lnkspd = 0;
link_speed = 0;
strWID.id = (u16)WID_LINKSPEED;
strWID.type = WID_CHAR;
strWID.val = &gs8lnkspd;
strWID.val = &link_speed;
strWID.size = sizeof(char);
PRINT_D(HOSTINF_DBG, "Getting LINKSPEED value\n");
......@@ -3937,9 +3937,7 @@ s32 host_int_get_link_speed(struct host_if_drv *hif_drv, s8 *ps8lnkspd)
return -EFAULT;
}
*ps8lnkspd = gs8lnkspd;
*ps8lnkspd = link_speed;
return s32Error;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册