staging: wilc1000: remove typedef from wilc_cfg_rsp_t
This patch removes typedef from the struct wilc_cfg_rsp_t and renames it to wilc_cfg_rsp. Signed-off-by: Leo Kim <leo.kim@atmel.com> Signed-off-by: Glen Lee <glen.lee@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0e354a8e65
commit
bcddd48b7f
4 changed files with 5 additions and 5 deletions
|
|
@ -1023,7 +1023,7 @@ static void wilc_wlan_handle_rxq(struct wilc *wilc)
|
|||
has_packet = 1;
|
||||
}
|
||||
} else {
|
||||
wilc_cfg_rsp_t rsp;
|
||||
struct wilc_cfg_rsp rsp;
|
||||
|
||||
wilc_wlan_cfg_indicate_rx(&buffer[pkt_offset + offset], pkt_len, &rsp);
|
||||
if (rsp.type == WILC_CFG_RSP) {
|
||||
|
|
|
|||
|
|
@ -271,10 +271,10 @@ struct wilc_cfg_frame {
|
|||
u8 frame[MAX_CFG_FRAME_SIZE];
|
||||
};
|
||||
|
||||
typedef struct {
|
||||
struct wilc_cfg_rsp {
|
||||
int type;
|
||||
u32 seq_no;
|
||||
} wilc_cfg_rsp_t;
|
||||
};
|
||||
|
||||
int wilc_wlan_firmware_download(const u8 *buffer, u32 buffer_size);
|
||||
int wilc_wlan_start(void);
|
||||
|
|
|
|||
|
|
@ -505,7 +505,7 @@ int wilc_wlan_cfg_get_wid_value(u16 wid, u8 *buffer, u32 buffer_size)
|
|||
return ret;
|
||||
}
|
||||
|
||||
int wilc_wlan_cfg_indicate_rx(u8 *frame, int size, wilc_cfg_rsp_t *rsp)
|
||||
int wilc_wlan_cfg_indicate_rx(u8 *frame, int size, struct wilc_cfg_rsp *rsp)
|
||||
{
|
||||
int ret = 1;
|
||||
u8 msg_type;
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ typedef struct {
|
|||
int wilc_wlan_cfg_set_wid(u8 *frame, u32 offset, u16 id, u8 *buf, int size);
|
||||
int wilc_wlan_cfg_get_wid(u8 *frame, u32 offset, u16 id);
|
||||
int wilc_wlan_cfg_get_wid_value(u16 wid, u8 *buffer, u32 buffer_size);
|
||||
int wilc_wlan_cfg_indicate_rx(u8 *frame, int size, wilc_cfg_rsp_t *rsp);
|
||||
int wilc_wlan_cfg_indicate_rx(u8 *frame, int size, struct wilc_cfg_rsp *rsp);
|
||||
int wilc_wlan_cfg_init(wilc_debug_func func);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue