Skip to content

Commit

Permalink
staging: rtl8192e: Convert typedef rt_firmware to struct rt_firmware
Browse files Browse the repository at this point in the history
Remove typedef from struct.
Rename struct.
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 b25765c commit 5aca114
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion drivers/staging/rtl8192e/r8192E_cmdpkt.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
struct r8192_priv *priv = rtllib_priv(dev);
u16 frag_threshold;
u16 frag_length = 0, frag_offset = 0;
rt_firmware *pfirmware = priv->pFirmware;
struct rt_firmware *pfirmware = priv->pFirmware;
struct sk_buff *skb;
unsigned char *seg_ptr;
cb_desc *tcb_desc;
Expand Down
8 changes: 4 additions & 4 deletions drivers/staging/rtl8192e/r8192E_firmware.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
extern void firmware_init_param(struct net_device *dev)
{
struct r8192_priv *priv = rtllib_priv(dev);
rt_firmware *pfirmware = priv->pFirmware;
struct rt_firmware *pfirmware = priv->pFirmware;

pfirmware->cmdpacket_frag_thresold = GET_COMMAND_PACKET_FRAG_THRESHOLD(MAX_TRANSMIT_BUFFER_SIZE);
}
Expand All @@ -39,7 +39,7 @@ bool fw_download_code(struct net_device *dev, u8 *code_virtual_address, u32 buff
u16 frag_length, frag_offset = 0;
int i;

rt_firmware *pfirmware = priv->pFirmware;
struct rt_firmware *pfirmware = priv->pFirmware;
struct sk_buff *skb;
unsigned char *seg_ptr;
cb_desc *tcb_desc;
Expand Down Expand Up @@ -210,7 +210,7 @@ bool CPUcheck_firmware_ready(struct net_device *dev)
inline static bool firmware_check_ready(struct net_device *dev, u8 load_fw_status)
{
struct r8192_priv *priv = rtllib_priv(dev);
rt_firmware *pfirmware = priv->pFirmware;
struct rt_firmware *pfirmware = priv->pFirmware;
bool rt_status = true;

switch (load_fw_status) {
Expand Down Expand Up @@ -269,7 +269,7 @@ bool init_firmware(struct net_device *dev)
opt_rst_type_e rst_opt = OPT_SYSTEM_RESET;
firmware_init_step_e starting_state = FW_INIT_STEP0_BOOT;

rt_firmware *pfirmware = priv->pFirmware;
struct rt_firmware *pfirmware = priv->pFirmware;

RT_TRACE(COMP_FIRMWARE, " PlatformInitFirmware()==>\n");

Expand Down
4 changes: 2 additions & 2 deletions drivers/staging/rtl8192e/r8192E_firmware.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@ struct fw_seg_container {
u8 *seg_ptr;
};//, *pfw_seg_container;

typedef struct _rt_firmware{
struct rt_firmware {
firmware_status_e firmware_status;
u16 cmdpacket_frag_thresold;
#define RTL8190_MAX_FIRMWARE_CODE_SIZE 64000
#define MAX_FW_INIT_STEP 3
u8 firmware_buf[MAX_FW_INIT_STEP][RTL8190_MAX_FIRMWARE_CODE_SIZE];
u16 firmware_buf_size[MAX_FW_INIT_STEP];
} rt_firmware, *prt_firmware;
};

bool init_firmware(struct net_device *dev);
extern void firmware_init_param(struct net_device *dev);
Expand Down
4 changes: 2 additions & 2 deletions drivers/staging/rtl8192e/rtl_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1267,9 +1267,9 @@ static void rtl8192_init_priv_variable(struct net_device* dev)
priv->card_type = PCI;

priv->AcmControl = 0;
priv->pFirmware = (rt_firmware*)vmalloc(sizeof(rt_firmware));
priv->pFirmware = (struct rt_firmware *)vmalloc(sizeof(struct rt_firmware));
if (priv->pFirmware)
memset(priv->pFirmware, 0, sizeof(rt_firmware));
memset(priv->pFirmware, 0, sizeof(struct rt_firmware));

skb_queue_head_init(&priv->rx_queue);
skb_queue_head_init(&priv->skb_queue);
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/rtl8192e/rtl_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ typedef struct r8192_priv

ACM_METHOD AcmMethod;

prt_firmware pFirmware;
struct rt_firmware *pFirmware;
rtl819x_loopback_e LoopbackMode;
firmware_source_e firmware_source;

Expand Down

0 comments on commit 5aca114

Please sign in to comment.