staging: rtl8192e: Convert typedef opt_rst_type_e to enum opt_rst_type

Remove typedef from enum.
Rename enum.
Rename uses.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2011-07-19 13:13:24 -05:00
parent cec0769542
commit 6bf04003c7
2 changed files with 3 additions and 3 deletions

View File

@ -266,7 +266,7 @@ bool init_firmware(struct net_device *dev)
u32 file_length = 0;
u8 *mapped_file = NULL;
u8 init_step = 0;
opt_rst_type_e rst_opt = OPT_SYSTEM_RESET;
enum opt_rst_type rst_opt = OPT_SYSTEM_RESET;
enum firmware_init_step starting_state = FW_INIT_STEP0_BOOT;
struct rt_firmware *pfirmware = priv->pFirmware;

View File

@ -29,10 +29,10 @@ enum firmware_init_step {
FW_INIT_STEP2_DATA = 2,
};
typedef enum _opt_rst_type_e{
enum opt_rst_type {
OPT_SYSTEM_RESET = 0,
OPT_FIRMWARE_RESET = 1,
} opt_rst_type_e;
};
typedef enum _desc_packet_type_e{
DESC_PACKET_TYPE_INIT = 0,