Commit a2340c36 authored by Tony Cho's avatar Tony Cho Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: rename strHostIFCfgParamAttr



This patch renames strHostIFCfgParamAttr to cfg_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 18990bfe
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -419,7 +419,7 @@ union message_body {
	struct rcvd_net_info net_info;
	struct rcvd_net_info net_info;
	struct rcvd_async_info async_info;
	struct rcvd_async_info async_info;
	struct key_attr key_info;
	struct key_attr key_info;
	struct cfg_param_attr strHostIFCfgParamAttr;
	struct cfg_param_attr cfg_info;
	struct set_channel strHostIFSetChan;
	struct set_channel strHostIFSetChan;
	struct get_channel strHostIFGetChan;
	struct get_channel strHostIFGetChan;
	struct set_beacon strHostIFSetBeacon;
	struct set_beacon strHostIFSetBeacon;
@@ -4124,7 +4124,7 @@ static int hostIFthread(void *pvArg)


		case HOST_IF_MSG_CFG_PARAMS:
		case HOST_IF_MSG_CFG_PARAMS:


			Handle_CfgParam(msg.drvHandler, &msg.body.strHostIFCfgParamAttr);
			Handle_CfgParam(msg.drvHandler, &msg.body.cfg_info);
			break;
			break;


		case HOST_IF_MSG_SET_CHANNEL:
		case HOST_IF_MSG_SET_CHANNEL:
@@ -5854,7 +5854,7 @@ s32 hif_set_cfg(tstrWILC_WFIDrv *hWFIDrv, tstrCfgParamVal *pstrCfgParamVal)
	/* prepare the WiphyParams Message */
	/* prepare the WiphyParams Message */
	memset(&msg, 0, sizeof(struct host_if_msg));
	memset(&msg, 0, sizeof(struct host_if_msg));
	msg.id = HOST_IF_MSG_CFG_PARAMS;
	msg.id = HOST_IF_MSG_CFG_PARAMS;
	msg.body.strHostIFCfgParamAttr.pstrCfgParamVal = *pstrCfgParamVal;
	msg.body.cfg_info.pstrCfgParamVal = *pstrCfgParamVal;
	msg.drvHandler = hWFIDrv;
	msg.drvHandler = hWFIDrv;


	s32Error = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg));
	s32Error = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg));