From: Ajay Singh Date: Fri, 11 May 2018 08:13:08 +0000 (+0530) Subject: staging: wilc1000: fix line over 80 chars in host_int_parse_assoc_resp_info() X-Git-Tag: v4.19~841^2~186 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9aef8233ef58583c1fd6f533f7ca4d2afaf80a70;p=platform%2Fkernel%2Flinux-rpi.git staging: wilc1000: fix line over 80 chars in host_int_parse_assoc_resp_info() Fix line over 80 characters issue in host_int_parse_assoc_resp_info() by using shorter name for the local variable. Signed-off-by: Ajay Singh Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 02e7da5..039b49b 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -1303,18 +1303,19 @@ static inline void host_int_parse_assoc_resp_info(struct wilc_vif *vif, memset(&conn_info, 0, sizeof(struct connect_info)); if (mac_status == MAC_STATUS_CONNECTED) { - u32 rcvd_assoc_resp_info_len; + u32 assoc_resp_info_len; memset(rcv_assoc_resp, 0, MAX_ASSOC_RESP_FRAME_SIZE); host_int_get_assoc_res_info(vif, rcv_assoc_resp, MAX_ASSOC_RESP_FRAME_SIZE, - &rcvd_assoc_resp_info_len); + &assoc_resp_info_len); - if (rcvd_assoc_resp_info_len != 0) { + if (assoc_resp_info_len != 0) { s32 err = 0; - err = wilc_parse_assoc_resp_info(rcv_assoc_resp, rcvd_assoc_resp_info_len, + err = wilc_parse_assoc_resp_info(rcv_assoc_resp, + assoc_resp_info_len, &connect_resp_info); if (err) { netdev_err(vif->ndev,