Skip to content

Commit

Permalink
staging: rtl8192e: Convert typedef RT_CUSTOMER_ID to enum rt_customer_id
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 0fd4442 commit ed8eac2
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions drivers/staging/rtl8192e/rtl_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -289,8 +289,7 @@ enum rt_status {
RT_STATUS_RESOURCE
};

typedef enum _RT_CUSTOMER_ID
{
enum rt_customer_id {
RT_CID_DEFAULT = 0,
RT_CID_8187_ALPHA0 = 1,
RT_CID_8187_SERCOMM_PS = 2,
Expand Down Expand Up @@ -321,7 +320,7 @@ typedef enum _RT_CUSTOMER_ID
RT_CID_819x_Arcadyan_Belkin = 29,
RT_CID_819x_SAMSUNG = 30,
RT_CID_819x_WNC_COREGA = 31,
} RT_CUSTOMER_ID, *PRT_CUSTOMER_ID;
};

typedef enum _RESET_TYPE {
RESET_TYPE_NORESET = 0x00,
Expand Down Expand Up @@ -583,7 +582,7 @@ struct r8192_priv {

struct log_int_8190 InterruptLog;

RT_CUSTOMER_ID CustomerID;
enum rt_customer_id CustomerID;


enum rt_rf_type_819xu rf_chip;
Expand Down

0 comments on commit ed8eac2

Please sign in to comment.