staging: wilc1000: change return type to 'void' for wilc_wlan_cfg_indicate_rx()
Cleanup patch to use 'void' return type for wilc_wlan_cfg_indicate_rx(), as its return value is not used in caller. The value set in 'rsp' argument is used to get the success status. Signed-off-by: Ajay Singh <ajay.kathat@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5a5078b0d9
commit
5d482d2dc9
|
@ -502,10 +502,9 @@ int wilc_wlan_cfg_get_wid_value(u16 wid, u8 *buffer, u32 buffer_size)
|
|||
return ret;
|
||||
}
|
||||
|
||||
int wilc_wlan_cfg_indicate_rx(struct wilc *wilc, u8 *frame, int size,
|
||||
struct wilc_cfg_rsp *rsp)
|
||||
void wilc_wlan_cfg_indicate_rx(struct wilc *wilc, u8 *frame, int size,
|
||||
struct wilc_cfg_rsp *rsp)
|
||||
{
|
||||
int ret = 1;
|
||||
u8 msg_type;
|
||||
u8 msg_id;
|
||||
|
||||
|
@ -547,11 +546,8 @@ int wilc_wlan_cfg_indicate_rx(struct wilc *wilc, u8 *frame, int size,
|
|||
default:
|
||||
rsp->type = 0;
|
||||
rsp->seq_no = msg_id;
|
||||
ret = 0;
|
||||
break;
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
int wilc_wlan_cfg_init(void)
|
||||
|
|
|
@ -31,8 +31,8 @@ struct wilc;
|
|||
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(struct wilc *wilc, u8 *frame, int size,
|
||||
struct wilc_cfg_rsp *rsp);
|
||||
void wilc_wlan_cfg_indicate_rx(struct wilc *wilc, u8 *frame, int size,
|
||||
struct wilc_cfg_rsp *rsp);
|
||||
int wilc_wlan_cfg_init(void);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue