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

staging: wilc1000: rename Handle_SetMulticastFilter to avoid camelCase

Fix "Avoid camelCase" issue found by checkpatch.pl script.
Signed-off-by: default avatarAjay Singh <ajay.kathat@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f53df856
...@@ -2404,8 +2404,8 @@ static void handle_power_management(struct wilc_vif *vif, ...@@ -2404,8 +2404,8 @@ static void handle_power_management(struct wilc_vif *vif,
netdev_err(vif->ndev, "Failed to send power management\n"); netdev_err(vif->ndev, "Failed to send power management\n");
} }
static void Handle_SetMulticastFilter(struct wilc_vif *vif, static void handle_set_mcast_filter(struct wilc_vif *vif,
struct set_multicast *hif_set_mc) struct set_multicast *hif_set_mc)
{ {
s32 result = 0; s32 result = 0;
struct wid wid; struct wid wid;
...@@ -2621,7 +2621,7 @@ static void host_if_work(struct work_struct *work) ...@@ -2621,7 +2621,7 @@ static void host_if_work(struct work_struct *work)
break; break;
case HOST_IF_MSG_SET_MULTICAST_FILTER: case HOST_IF_MSG_SET_MULTICAST_FILTER:
Handle_SetMulticastFilter(msg->vif, &msg->body.multicast_info); handle_set_mcast_filter(msg->vif, &msg->body.multicast_info);
break; break;
case HOST_IF_MSG_DEL_ALL_STA: case HOST_IF_MSG_DEL_ALL_STA:
......
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