Commit ba7eac31 authored by Chaehyun Lim's avatar Chaehyun Lim Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: rename Handle_Scan



This patch renames Handle_Scan to handle_scan to avoid camelcase.

Signed-off-by: default avatarChaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 03f00ac7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -731,7 +731,7 @@ static s32 handle_cfg_param(struct wilc_vif *vif,
	return result;
}

static s32 Handle_Scan(struct wilc_vif *vif,
static s32 handle_scan(struct wilc_vif *vif,
		       struct scan_attr *pstrHostIFscanAttr)
{
	s32 result = 0;
@@ -2515,7 +2515,7 @@ static int hostIFthread(void *pvArg)

		switch (msg.id) {
		case HOST_IF_MSG_SCAN:
			Handle_Scan(msg.vif, &msg.body.scan_info);
			handle_scan(msg.vif, &msg.body.scan_info);
			break;

		case HOST_IF_MSG_CONNECT: