mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-26 22:24:09 +08:00
wl12xx: change type from u8 to int
ret is used to store int types. Using an u8 will break the error handling. Signed-off-by: Dan Carpenter <error27@gmail.com> Signed-off-by: Luciano Coelho <coelho@ti.com>
This commit is contained in:
parent
320d6c1b56
commit
03c5a9cf49
@ -483,7 +483,7 @@ static void wl1271_check_ba_support(struct wl1271 *wl)
|
|||||||
static int wl1271_set_ba_policies(struct wl1271 *wl)
|
static int wl1271_set_ba_policies(struct wl1271 *wl)
|
||||||
{
|
{
|
||||||
u8 tid_index;
|
u8 tid_index;
|
||||||
u8 ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
/* Reset the BA RX indicators */
|
/* Reset the BA RX indicators */
|
||||||
wl->ba_rx_bitmap = 0;
|
wl->ba_rx_bitmap = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user