staging: wilc1000: remove typedef from tstrHostIFwpaAttr
authorLeo Kim <leo.kim@atmel.com>
Mon, 5 Oct 2015 06:25:43 +0000 (15:25 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 8 Oct 2015 09:56:03 +0000 (10:56 +0100)
This patch removes typedef from the struct tstrHostIFwpaAttr.
And rename it to host_if_wpa_attr.

Signed-off-by: Leo Kim <leo.kim@atmel.com>
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 b742e24d9cac379322af9bce01750d05bd20e7b9..33988117d78762b1f3bbcde0b1643db5238b55d6 100644 (file)
@@ -76,7 +76,7 @@ struct cfg_param_attr {
 };
 
 /*!
- *  @struct             tstrHostIFwpaAttr
+ *  @struct             host_if_wpa_attr
  *  @brief             Structure to hold Host IF Scan Attributes
  *  @details
  *  @todo
@@ -85,7 +85,7 @@ struct cfg_param_attr {
  *  @date              25 March 2012
  *  @version           1.0
  */
-typedef struct _tstrHostIFwpaAttr {
+struct host_if_wpa_attr {
        u8 *pu8key;
        const u8 *pu8macaddr;
        u8 *pu8seq;
@@ -93,7 +93,7 @@ typedef struct _tstrHostIFwpaAttr {
        u8 u8keyidx;
        u8 u8Keylen;
        u8 u8Ciphermode;
-} tstrHostIFwpaAttr;
+};
 
 
 /*!
@@ -126,7 +126,7 @@ struct host_if_wep_attr {
  */
 union host_if_key_attr {
        struct host_if_wep_attr strHostIFwepAttr;
-       tstrHostIFwpaAttr strHostIFwpaAttr;
+       struct host_if_wpa_attr strHostIFwpaAttr;
        tstrHostIFpmkidAttr strHostIFpmkidAttr;
 };
 
This page took 0.027734 seconds and 5 git commands to generate.