staging: wilc1000: remove typedef from the struct tstrHostIFDelSta
authorTony Cho <tony.cho@atmel.com>
Mon, 21 Sep 2015 03:16:57 +0000 (12:16 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 21 Sep 2015 06:00:27 +0000 (23:00 -0700)
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 <tony.cho@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/host_interface.c

index 4ce981b39a4967c98217c8cddfa94bf6aa3d4dee..ae56fb49c80aae8168deefa0e9fa61f4c7de2738 100644 (file)
@@ -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");