Commit bae636eb authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman

staging: wilc1000: rename bIsEnabled of struct set_multicast

This patch renames bIsEnabled of struct set_multicast to enabled to
avoid CamelCase naming convention.
Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarTony Cho <tony.cho@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8ba1803f
...@@ -140,7 +140,7 @@ struct beacon_attr { ...@@ -140,7 +140,7 @@ struct beacon_attr {
}; };
struct set_multicast { struct set_multicast {
bool bIsEnabled; bool enabled;
u32 u32count; u32 u32count;
}; };
...@@ -2796,10 +2796,10 @@ static void Handle_SetMulticastFilter(struct host_if_drv *hif_drv, ...@@ -2796,10 +2796,10 @@ static void Handle_SetMulticastFilter(struct host_if_drv *hif_drv,
goto ERRORHANDLER; goto ERRORHANDLER;
pu8CurrByte = strWID.val; pu8CurrByte = strWID.val;
*pu8CurrByte++ = (strHostIfSetMulti->bIsEnabled & 0xFF); *pu8CurrByte++ = (strHostIfSetMulti->enabled & 0xFF);
*pu8CurrByte++ = ((strHostIfSetMulti->bIsEnabled >> 8) & 0xFF); *pu8CurrByte++ = ((strHostIfSetMulti->enabled >> 8) & 0xFF);
*pu8CurrByte++ = ((strHostIfSetMulti->bIsEnabled >> 16) & 0xFF); *pu8CurrByte++ = ((strHostIfSetMulti->enabled >> 16) & 0xFF);
*pu8CurrByte++ = ((strHostIfSetMulti->bIsEnabled >> 24) & 0xFF); *pu8CurrByte++ = ((strHostIfSetMulti->enabled >> 24) & 0xFF);
*pu8CurrByte++ = (strHostIfSetMulti->u32count & 0xFF); *pu8CurrByte++ = (strHostIfSetMulti->u32count & 0xFF);
*pu8CurrByte++ = ((strHostIfSetMulti->u32count >> 8) & 0xFF); *pu8CurrByte++ = ((strHostIfSetMulti->u32count >> 8) & 0xFF);
...@@ -4912,7 +4912,7 @@ s32 host_int_setup_multicast_filter(struct host_if_drv *hif_drv, ...@@ -4912,7 +4912,7 @@ s32 host_int_setup_multicast_filter(struct host_if_drv *hif_drv,
msg.id = HOST_IF_MSG_SET_MULTICAST_FILTER; msg.id = HOST_IF_MSG_SET_MULTICAST_FILTER;
msg.drv = hif_drv; msg.drv = hif_drv;
pstrMulticastFilterParam->bIsEnabled = bIsEnabled; pstrMulticastFilterParam->enabled = bIsEnabled;
pstrMulticastFilterParam->u32count = u32count; pstrMulticastFilterParam->u32count = u32count;
s32Error = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg)); s32Error = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg));
......
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