staging: wilc1000: remove typedef from the struct tstrHostIfStaInactiveT
authorTony Cho <tony.cho@atmel.com>
Mon, 21 Sep 2015 03:16:49 +0000 (12:16 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 21 Sep 2015 06:00:26 +0000 (23:00 -0700)
This patch removes typedef from the struct tstrHostIfStaInactiveT and
renames it to sta_inactive_t in oder to comply with the Linux coding
style.

Signed-off-by: Tony Cho <tony.cho@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/host_interface.c

index 5710832b76c4c705208572e68942da71207e9d92..52141eb05f78d5aa3d8ed89b2eb7f77eda21e182 100644 (file)
@@ -390,7 +390,7 @@ typedef struct {
 } tstrHostIFSetIPAddr;
 
 /*!
- *  @struct     tstrHostIfStaInactiveT
+ *  @struct     sta_inactive_t
  *  @brief             Get station message body
  *  @details
  *  @todo
@@ -399,10 +399,9 @@ typedef struct {
  *  @date              16 April 2013
  *  @version           1.0
  */
-typedef struct {
+struct sta_inactive_t {
        u8 mac[6];
-
-} tstrHostIfStaInactiveT;
+};
 /**/
 /*!
  *  @union              message_body
@@ -431,7 +430,7 @@ union message_body {
        /* tstrScanComplete             strScanComplete;                / *Received Async. Scan Complete message body* / */
        struct timer_cb strTimerCb;                                                 /*!< Timer callback message body */
        struct power_mgmt_param strPowerMgmtparam;     /*!< Power Management message body */
-       tstrHostIfStaInactiveT strHostIfStaInactiveT;
+       struct sta_inactive_t strHostIfStaInactiveT;
        tstrHostIFSetIPAddr strHostIfSetIP;
        tstrHostIfSetDrvHandler strHostIfSetDrvHandler;
        tstrHostIFSetMulti strHostIfSetMulti;
@@ -3366,7 +3365,8 @@ s32 Handle_GetStatistics(tstrWILC_WFIDrv *drvHandler, tstrStatistics *pstrStatis
  *  @date
  *  @version   1.0
  */
-static s32 Handle_Get_InActiveTime(tstrWILC_WFIDrv *drvHandler, tstrHostIfStaInactiveT *strHostIfStaInactiveT)
+static s32 Handle_Get_InActiveTime(tstrWILC_WFIDrv *drvHandler,
+                                  struct sta_inactive_t *strHostIfStaInactiveT)
 {
 
        s32 s32Error = 0;
This page took 0.027434 seconds and 5 git commands to generate.