This patch renames variable gs8lnkspd to link_speed.
Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Tony Cho <tony.cho@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
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];
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");
return -EFAULT;
}
-
- *ps8lnkspd = gs8lnkspd;
-
+ *ps8lnkspd = link_speed;
return s32Error;
}