diff options
| author | Larry Finger <Larry.Finger@lwfinger.net> | 2011-07-20 04:52:21 +0400 |
|---|---|---|
| committer | Larry Finger <Larry.Finger@lwfinger.net> | 2011-08-24 19:52:37 +0400 |
| commit | 456419dbb389498042ea2808600d25b67f687716 (patch) | |
| tree | e4c12de7d76553c4d6a1101acda3999d52a910f6 | |
| parent | ab0d7ccaf733d064bd8e0f1d1a0eb67be79232ee (diff) | |
| download | linux-456419dbb389498042ea2808600d25b67f687716.tar.xz | |
staging: rtl8192e: Convert typedef IC_INFERIORITY_8192S to enum ic_inferiority_8192s
Remove typedef from enum.
Rename enum.
Rename uses.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
| -rw-r--r-- | drivers/staging/rtl8192e/rtl_core.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/rtl8192e/rtl_core.h b/drivers/staging/rtl8192e/rtl_core.h index b3bba7dae205..aca9bf3648c2 100644 --- a/drivers/staging/rtl8192e/rtl_core.h +++ b/drivers/staging/rtl8192e/rtl_core.h @@ -328,10 +328,10 @@ enum reset_type { RESET_TYPE_SILENT = 0x02 }; -typedef enum _IC_INFERIORITY_8192S{ +enum ic_inferiority_8192s { IC_INFERIORITY_A = 0, IC_INFERIORITY_B = 1, -} IC_INFERIORITY_8192S, *PIC_INFERIORITY_8192S; +}; typedef enum _PCI_BRIDGE_VENDOR { PCI_BRIDGE_VENDOR_INTEL = 0x0, @@ -586,7 +586,7 @@ struct r8192_priv { enum rt_rf_type_819xu rf_chip; - IC_INFERIORITY_8192S IC_Class; + enum ic_inferiority_8192s IC_Class; enum ht_channel_width CurrentChannelBW; struct bb_reg_definition PHYRegDef[4]; struct rate_adaptive rate_adaptive; |
