From b7611a87a938ffc1aaff54b1d773e5f372ae2150 Mon Sep 17 00:00:00 2001 From: Tony Cho Date: Mon, 21 Sep 2015 12:16:54 +0900 Subject: [PATCH] staging: wilc1000: remove typedef from the struct tstrHostIfSetMacAddress This patch removes typedef from the struct tstrHostIfSetMacAddress and renames it set_mac_addr in order to comply with the Linux coding style. Signed-off-by: Tony Cho Signed-off-by: Greg Kroah-Hartman --- drivers/staging/wilc1000/host_interface.c | 5 +++-- drivers/staging/wilc1000/host_interface.h | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 68df96bc3634..c1fc145cbdea 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -434,7 +434,7 @@ union message_body { struct drv_handler strHostIfSetDrvHandler; struct set_multicast strHostIfSetMulti; struct op_mode strHostIfSetOperationMode; - tstrHostIfSetMacAddress strHostIfSetMacAddress; + struct set_mac_addr strHostIfSetMacAddress; tstrHostIfGetMacAddress strHostIfGetMacAddress; tstrHostIfBASessionInfo strHostIfBASessionInfo; tstrHostIfRemainOnChan strHostIfRemainOnChan; @@ -846,7 +846,8 @@ s32 Handle_get_IPAddress(tstrWILC_WFIDrv *drvHandler, u8 *pu8IPAddr, u8 idx) * @date November 2013 * @version 7.0 */ -static s32 Handle_SetMacAddress(tstrWILC_WFIDrv *drvHandler, tstrHostIfSetMacAddress *pstrHostIfSetMacAddress) +static s32 Handle_SetMacAddress(tstrWILC_WFIDrv *drvHandler, + struct set_mac_addr *pstrHostIfSetMacAddress) { s32 s32Error = 0; diff --git a/drivers/staging/wilc1000/host_interface.h b/drivers/staging/wilc1000/host_interface.h index 101e51f1920d..fc7c521f46ee 100644 --- a/drivers/staging/wilc1000/host_interface.h +++ b/drivers/staging/wilc1000/host_interface.h @@ -263,9 +263,9 @@ struct op_mode { u32 u32Mode; }; -typedef struct { +struct set_mac_addr { u8 u8MacAddress[ETH_ALEN]; -} tstrHostIfSetMacAddress; +}; typedef struct { u8 *u8MacAddress; -- 2.34.1