From: Tony Cho Date: Mon, 21 Sep 2015 03:16:50 +0000 (+0900) Subject: staging: wilc1000: remove typedef from the struct tstrHostIFSetIPAddr X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=15191eaf4ef2d705e9b529f24977a29de8ed0d2d;p=deliverable%2Flinux.git staging: wilc1000: remove typedef from the struct tstrHostIFSetIPAddr This patch removes typedef from the struct tstrHostIFSetIPAddr and renames it to set_ip_addr 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 52141eb05f78..7b9f78a73169 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -374,7 +374,7 @@ struct power_mgmt_param { }; /*! - * @struct tstrHostIFSetIPAddr + * @struct set_ip_addr * @brief set IP Address message body * @details * @todo @@ -383,11 +383,10 @@ struct power_mgmt_param { * @date 30 August 2013 * @version 1.0 Description */ - -typedef struct { +struct set_ip_addr { u8 *au8IPAddr; u8 idx; -} tstrHostIFSetIPAddr; +}; /*! * @struct sta_inactive_t @@ -431,7 +430,7 @@ union message_body { struct timer_cb strTimerCb; /*!< Timer callback message body */ struct power_mgmt_param strPowerMgmtparam; /*!< Power Management message body */ struct sta_inactive_t strHostIfStaInactiveT; - tstrHostIFSetIPAddr strHostIfSetIP; + struct set_ip_addr strHostIfSetIP; tstrHostIfSetDrvHandler strHostIfSetDrvHandler; tstrHostIFSetMulti strHostIfSetMulti; tstrHostIfSetOperationMode strHostIfSetOperationMode;