Skip to content

Commit

Permalink
staging: rtl8192e: Convert typedef nic_t to enum nic_t
Browse files Browse the repository at this point in the history
Remove typedef from enum.
Rename enum.
Rename uses.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
  • Loading branch information
Larry Finger authored and Larry Finger committed Aug 24, 2011
1 parent 39b2a4a commit b55941a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/staging/rtl8192e/rtl_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ enum RTL_DEBUG {
COMP_ERR = BIT31
};

typedef enum _nic_t{
enum nic_t {
NIC_UNKNOWN = 0,
NIC_8192E = 1,
NIC_8190P = 2,
Expand All @@ -249,7 +249,7 @@ typedef enum _nic_t{
NIC_8192CU = 6,
NIC_8192DE = 7,
NIC_8192DU = 8,
} nic_t;
};

typedef enum _RT_EEPROM_TYPE{
EEPROM_93C46,
Expand Down Expand Up @@ -524,7 +524,7 @@ struct rtl8192_tx_ring {


struct rtl819x_ops{
nic_t nic_type;
enum nic_t nic_type;
void (* get_eeprom_size)(struct net_device* dev);
void (* init_adapter_variable)(struct net_device* dev);
void (* init_before_adapter_start)(struct net_device* dev);
Expand Down Expand Up @@ -698,7 +698,7 @@ struct r8192_priv {
u32 irq_mask[2];

u8 Rf_Mode;
nic_t card_8192;
enum nic_t card_8192;
u8 card_8192_version;

short enable_gpio0;
Expand Down

0 comments on commit b55941a

Please sign in to comment.