mirror of https://gitee.com/openkylin/linux.git
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: Ajay Singh <ajay.kathat@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f44cf0ee4a
commit
08268f110b
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue