Commit 08268f11 authored by Ajay Singh's avatar Ajay Singh Committed by Greg Kroah-Hartman

staging: wilc1000: fix line over 80 characters issue in handle_connect()

Fix line over 80 character issue found by checkpatch.pl script by
aligning the input argument in function call.
Signed-off-by: default avatarAjay Singh <ajay.kathat@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f44cf0ee
......@@ -1117,10 +1117,8 @@ static s32 handle_connect(struct wilc_vif *vif,
}
conn_attr->result(CONN_DISCONN_EVENT_CONN_RESP,
&conn_info,
MAC_STATUS_DISCONNECTED,
NULL,
conn_attr->arg);
&conn_info, MAC_STATUS_DISCONNECTED,
NULL, conn_attr->arg);
hif_drv->hif_state = HOST_IF_IDLE;
kfree(conn_info.req_ies);
conn_info.req_ies = NULL;
......
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