Skip to content

Commit 5228495

Browse files
ajaykathatKalle Valo
authored andcommitted
wifi: wilc1000: fix driver_handler when committing initial configuration
During firmware initial configuration in wilc_init_fw_config, the special driver_handler 0 should be used instead of targeting a specific virtual interface (either 1 or 2) The issue does not seem to have real consequence (both virtual interfaces seems to answer correctly to a Add Block Ack request with the Immediate policy), but lets make everything homogeneous Signed-off-by: Ajay Singh <[email protected]> Signed-off-by: Alexis Lothoré <[email protected]> Signed-off-by: Kalle Valo <[email protected]> Link: https://msgid.link/[email protected]
1 parent 0635d73 commit 5228495

File tree

1 file changed

+1
-1
lines changed
  • drivers/net/wireless/microchip/wilc1000

1 file changed

+1
-1
lines changed

drivers/net/wireless/microchip/wilc1000/netdev.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ static int wilc_init_fw_config(struct net_device *dev, struct wilc_vif *vif)
416416

417417
b = 1;
418418
if (!wilc_wlan_cfg_set(vif, 0, WID_11N_IMMEDIATE_BA_ENABLED, &b, 1,
419-
1, 1))
419+
1, 0))
420420
goto fail;
421421

422422
return 0;

0 commit comments

Comments
 (0)