From: Leo Kim <leo.kim@xxxxxxxxx> This patch renames variable gs8lnkspd to link_speed. Signed-off-by: Leo Kim <leo.kim@xxxxxxxxx> Signed-off-by: Tony Cho <tony.cho@xxxxxxxxx> --- drivers/staging/wilc1000/host_interface.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 14cd253..79aaeaa 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -254,7 +254,7 @@ static u8 rcv_assoc_resp[MAX_ASSOC_RESP_FRAME_SIZE]; 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]; @@ -2188,11 +2188,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"); @@ -3971,9 +3971,7 @@ s32 host_int_get_link_speed(struct host_if_drv *hif_drv, s8 *ps8lnkspd) return -EFAULT; } - - *ps8lnkspd = gs8lnkspd; - + *ps8lnkspd = link_speed; return s32Error; } -- 1.9.1 _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel