Commit fb2d65ed authored by Tony Cho's avatar Tony Cho Committed by Greg Kroah-Hartman

staging: wilc1000: rename strHostIfSetIP

This patch renames strHostIfSetIP to ip_info to avoid CamelCase naming
convention.
Signed-off-by: default avatarTony Cho <tony.cho@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5e4377e6
...@@ -383,7 +383,7 @@ union message_body { ...@@ -383,7 +383,7 @@ union message_body {
struct add_sta_param edit_sta_info; struct add_sta_param edit_sta_info;
struct power_mgmt_param pwr_mgmt_info; struct power_mgmt_param pwr_mgmt_info;
struct sta_inactive_t mac_info; struct sta_inactive_t mac_info;
struct set_ip_addr strHostIfSetIP; struct set_ip_addr ip_info;
struct drv_handler drv; struct drv_handler drv;
struct set_multicast strHostIfSetMulti; struct set_multicast strHostIfSetMulti;
struct op_mode strHostIfSetOperationMode; struct op_mode strHostIfSetOperationMode;
...@@ -4168,12 +4168,12 @@ static int hostIFthread(void *pvArg) ...@@ -4168,12 +4168,12 @@ static int hostIFthread(void *pvArg)
case HOST_IF_MSG_SET_IPADDRESS: case HOST_IF_MSG_SET_IPADDRESS:
PRINT_D(HOSTINF_DBG, "HOST_IF_MSG_SET_IPADDRESS\n"); PRINT_D(HOSTINF_DBG, "HOST_IF_MSG_SET_IPADDRESS\n");
Handle_set_IPAddress(msg.drvHandler, msg.body.strHostIfSetIP.au8IPAddr, msg.body.strHostIfSetIP.idx); Handle_set_IPAddress(msg.drvHandler, msg.body.ip_info.au8IPAddr, msg.body.ip_info.idx);
break; break;
case HOST_IF_MSG_GET_IPADDRESS: case HOST_IF_MSG_GET_IPADDRESS:
PRINT_D(HOSTINF_DBG, "HOST_IF_MSG_SET_IPADDRESS\n"); PRINT_D(HOSTINF_DBG, "HOST_IF_MSG_SET_IPADDRESS\n");
Handle_get_IPAddress(msg.drvHandler, msg.body.strHostIfSetIP.au8IPAddr, msg.body.strHostIfSetIP.idx); Handle_get_IPAddress(msg.drvHandler, msg.body.ip_info.au8IPAddr, msg.body.ip_info.idx);
break; break;
case HOST_IF_MSG_SET_MAC_ADDRESS: case HOST_IF_MSG_SET_MAC_ADDRESS:
...@@ -7232,9 +7232,9 @@ s32 host_int_setup_ipaddress(tstrWILC_WFIDrv *hWFIDrv, u8 *u16ipadd, u8 idx) ...@@ -7232,9 +7232,9 @@ s32 host_int_setup_ipaddress(tstrWILC_WFIDrv *hWFIDrv, u8 *u16ipadd, u8 idx)
/* prepare the WiphyParams Message */ /* prepare the WiphyParams Message */
msg.id = HOST_IF_MSG_SET_IPADDRESS; msg.id = HOST_IF_MSG_SET_IPADDRESS;
msg.body.strHostIfSetIP.au8IPAddr = u16ipadd; msg.body.ip_info.au8IPAddr = u16ipadd;
msg.drvHandler = hWFIDrv; msg.drvHandler = hWFIDrv;
msg.body.strHostIfSetIP.idx = idx; msg.body.ip_info.idx = idx;
s32Error = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg)); s32Error = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg));
if (s32Error) if (s32Error)
...@@ -7269,9 +7269,9 @@ s32 host_int_get_ipaddress(tstrWILC_WFIDrv *hWFIDrv, u8 *u16ipadd, u8 idx) ...@@ -7269,9 +7269,9 @@ s32 host_int_get_ipaddress(tstrWILC_WFIDrv *hWFIDrv, u8 *u16ipadd, u8 idx)
/* prepare the WiphyParams Message */ /* prepare the WiphyParams Message */
msg.id = HOST_IF_MSG_GET_IPADDRESS; msg.id = HOST_IF_MSG_GET_IPADDRESS;
msg.body.strHostIfSetIP.au8IPAddr = u16ipadd; msg.body.ip_info.au8IPAddr = u16ipadd;
msg.drvHandler = hWFIDrv; msg.drvHandler = hWFIDrv;
msg.body.strHostIfSetIP.idx = idx; msg.body.ip_info.idx = idx;
s32Error = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg)); s32Error = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg));
if (s32Error) if (s32Error)
......
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