From: Tony Cho Date: Mon, 21 Sep 2015 03:16:57 +0000 (+0900) Subject: staging: wilc1000: remove typedef from the struct tstrHostIFDelSta X-Git-Tag: firefly_0821_release~176^2~802^2~1837 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=fb93a1e1be67aa935903687d7d4972751b8adebc;p=firefly-linux-kernel-4.4.55.git staging: wilc1000: remove typedef from the struct tstrHostIFDelSta This patch removes typedef from the struct tstrHostIFDelSta and renames it del_sta 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 4ce981b39a49..ae56fb49c80a 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -329,7 +329,7 @@ typedef struct { } tstrHostIFDelAllSta; /*! - * @struct tstrHostIFDelSta + * @struct del_sta * @brief Delete station message body * @details * @todo @@ -338,10 +338,9 @@ typedef struct { * @date 15 July 2012 * @version 1.0 Description */ - -typedef struct { +struct del_sta { u8 au8MacAddr[ETH_ALEN]; -} tstrHostIFDelSta; +}; /*! * @struct timer_cb @@ -424,7 +423,7 @@ union message_body { struct set_beacon strHostIFSetBeacon; /*!< Set beacon message body */ struct del_beacon strHostIFDelBeacon; /*!< Del beacon message body */ struct add_sta_param strAddStaParam; /*!< Add station message body */ - tstrHostIFDelSta strDelStaParam; /*!< Del Station message body */ + struct del_sta strDelStaParam; /*!< Del Station message body */ struct add_sta_param strEditStaParam; /*!< Edit station message body */ /* tstrScanComplete strScanComplete; / *Received Async. Scan Complete message body* / */ struct timer_cb strTimerCb; /*!< Timer callback message body */ @@ -3686,13 +3685,14 @@ ERRORHANDLER: /** * @brief Handle_DelStation * @details Sending config packet to delete station - * @param[in] tstrHostIFDelSta* pstrDelStaParam + * @param[in] struct del_sta *pstrDelStaParam * @return NONE * @author * @date * @version 1.0 */ -static void Handle_DelStation(tstrWILC_WFIDrv *drvHandler, tstrHostIFDelSta *pstrDelStaParam) +static void Handle_DelStation(tstrWILC_WFIDrv *drvHandler, + struct del_sta *pstrDelStaParam) { s32 s32Error = 0; tstrWID strWID; @@ -7084,7 +7084,7 @@ s32 host_int_del_station(tstrWILC_WFIDrv *hWFIDrv, const u8 *pu8MacAddr) s32 s32Error = 0; tstrWILC_WFIDrv *pstrWFIDrv = (tstrWILC_WFIDrv *)hWFIDrv; struct host_if_msg msg; - tstrHostIFDelSta *pstrDelStationMsg = &msg.body.strDelStaParam; + struct del_sta *pstrDelStationMsg = &msg.body.strDelStaParam; if (pstrWFIDrv == NULL) { PRINT_ER("driver is null\n");