staging: wilc1000 remove typedef from the union
authorTony Cho <tony.cho@atmel.com>
Mon, 21 Sep 2015 03:16:34 +0000 (12:16 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 21 Sep 2015 05:55:27 +0000 (22:55 -0700)
This patch gets rid of typedef from the union and renames tuniHostIFmsgBody
with simply message_body because the Linux coding style does not recommend
camelcase notation and typedef for structure, enmu and also union.

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 26c44ce335033d0273ae4a9eaceac55814b94d4c..25f2ce06894717168b651bee5e2f25792cf1c29c 100644 (file)
@@ -407,7 +407,7 @@ typedef struct {
 } tstrHostIfStaInactiveT;
 /**/
 /*!
- *  @union              tuniHostIFmsgBody
+ *  @union              message_body
  *  @brief             Message body for the Host Interface message_q
  *  @details
  *  @todo
@@ -416,7 +416,7 @@ typedef struct {
  *  @date              25 March 2012
  *  @version           1.0
  */
-typedef union _tuniHostIFmsgBody {
+union message_body {
        tstrHostIFscanAttr strHostIFscanAttr;                           /*!< Host IF Scan Request Attributes message body */
        tstrHostIFconnectAttr strHostIFconnectAttr;     /*!< Host IF Connect Request Attributes message body */
        tstrRcvdNetworkInfo strRcvdNetworkInfo;                 /*!< Received Asynchronous Network Info message body */
@@ -445,7 +445,7 @@ typedef union _tuniHostIFmsgBody {
        tstrHostIfRegisterFrame strHostIfRegisterFrame;
        char *pUserData;
        tstrHostIFDelAllSta strHostIFDelAllSta;
-} tuniHostIFmsgBody;
+};
 
 /*!
  *  @struct             struct host_if_msg
@@ -459,7 +459,7 @@ typedef union _tuniHostIFmsgBody {
  */
 struct host_if_msg {
        u16 id;                                           /*!< Message ID */
-       tuniHostIFmsgBody uniHostIFmsgBody;             /*!< Message body */
+       union message_body uniHostIFmsgBody;             /*!< Message body */
        tstrWILC_WFIDrv *drvHandler;
 };