This patch renames u8ScanType of struct scan_attr to type to
avoid CamelCase naming convention.
Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Tony Cho <tony.cho@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
struct scan_attr {
u8 src;
- u8 u8ScanType;
+ u8 type;
u8 *pu8ChnlFreqList;
u8 u8ChnlListLen;
u8 *pu8IEs;
strWIDList[u32WidsCount].id = WID_SCAN_TYPE;
strWIDList[u32WidsCount].type = WID_CHAR;
strWIDList[u32WidsCount].size = sizeof(char);
- strWIDList[u32WidsCount].val = (s8 *)(&(pstrHostIFscanAttr->u8ScanType));
+ strWIDList[u32WidsCount].val = (s8 *)(&(pstrHostIFscanAttr->type));
u32WidsCount++;
strWIDList[u32WidsCount].id = WID_SCAN_CHANNEL_LIST;
msg.drv = hif_drv;
msg.body.scan_info.src = u8ScanSource;
- msg.body.scan_info.u8ScanType = u8ScanType;
+ msg.body.scan_info.type = u8ScanType;
msg.body.scan_info.pfScanResult = ScanResult;
msg.body.scan_info.pvUserArg = pvUserArg;