From: Tony Cho Date: Mon, 21 Sep 2015 03:16:51 +0000 (+0900) Subject: staging: wilc1000: remove typedef from the struct tstrHostIfSetDrvHandler X-Git-Tag: KARO-TX6UL-2015-11-03~34^2~1843 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=127f9d9497aa90b9006323b97f539dcca88df95b;p=karo-tx-linux.git staging: wilc1000: remove typedef from the struct tstrHostIfSetDrvHandler This patch removes typedef from the struct tstrHostIfSetDrvHandler and renames it to drv_handler in order to comply with the Linux coding style. Signed-off-by: Tony Cho Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 7b9f78a73169..64d614abc5ab 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -431,7 +431,7 @@ union message_body { struct power_mgmt_param strPowerMgmtparam; /*!< Power Management message body */ struct sta_inactive_t strHostIfStaInactiveT; struct set_ip_addr strHostIfSetIP; - tstrHostIfSetDrvHandler strHostIfSetDrvHandler; + struct drv_handler strHostIfSetDrvHandler; tstrHostIFSetMulti strHostIfSetMulti; tstrHostIfSetOperationMode strHostIfSetOperationMode; tstrHostIfSetMacAddress strHostIfSetMacAddress; @@ -660,14 +660,15 @@ static s32 Handle_SetChannel(tstrWILC_WFIDrv *drvHandler, /** * @brief Handle_SetWfiDrvHandler * @details Sending config packet to firmware to set driver handler - * @param[in] void * drvHandler,tstrHostIfSetDrvHandler* pstrHostIfSetDrvHandler + * @param[in] void * drvHandler, + * struct drv_handler *pstrHostIfSetDrvHandler * @return Error code. * @author * @date * @version 1.0 */ static s32 Handle_SetWfiDrvHandler(tstrWILC_WFIDrv *drvHandler, - tstrHostIfSetDrvHandler *pstrHostIfSetDrvHandler) + struct drv_handler *pstrHostIfSetDrvHandler) { s32 s32Error = 0; diff --git a/drivers/staging/wilc1000/host_interface.h b/drivers/staging/wilc1000/host_interface.h index b24eeb6841cb..dc6fe73707c8 100644 --- a/drivers/staging/wilc1000/host_interface.h +++ b/drivers/staging/wilc1000/host_interface.h @@ -255,9 +255,9 @@ typedef struct { void *u32UserConnectPvoid; } tstrWILC_UsrConnReq; -typedef struct { +struct drv_handler { u32 u32Address; -} tstrHostIfSetDrvHandler; +}; typedef struct { u32 u32Mode;