Commit cc8abb26 authored by Larry Finger's avatar Larry Finger

staging: rtl8192e: Convert typedef HT_MCS_RATE to enum ht_mcs_rate

Remove typedef from enum.
Rename enum.
Rename uses.
Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
parent 43602f2c
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
#define HT_SUPPORTED_MCS_1SS_2SS_BITMAP HT_MCS_1SS_BITMAP|HT_MCS_1SS_2SS_BITMAP #define HT_SUPPORTED_MCS_1SS_2SS_BITMAP HT_MCS_1SS_BITMAP|HT_MCS_1SS_2SS_BITMAP
typedef enum _HT_MCS_RATE{ enum ht_mcs_rate {
HT_MCS0 = 0x00000001, HT_MCS0 = 0x00000001,
HT_MCS1 = 0x00000002, HT_MCS1 = 0x00000002,
HT_MCS2 = 0x00000004, HT_MCS2 = 0x00000004,
...@@ -56,7 +56,7 @@ typedef enum _HT_MCS_RATE{ ...@@ -56,7 +56,7 @@ typedef enum _HT_MCS_RATE{
HT_MCS13 = 0x00002000, HT_MCS13 = 0x00002000,
HT_MCS14 = 0x00004000, HT_MCS14 = 0x00004000,
HT_MCS15 = 0x00008000, HT_MCS15 = 0x00008000,
} HT_MCS_RATE,*PHT_MCS_RATE; };
typedef enum _HT_CHANNEL_WIDTH{ typedef enum _HT_CHANNEL_WIDTH{
HT_CHANNEL_WIDTH_20 = 0, HT_CHANNEL_WIDTH_20 = 0,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment