diff options
author | Russell King (Oracle) <rmk+kernel@armlinux.org.uk> | 2024-07-28 14:32:12 +0100 |
---|---|---|
committer | Russell King (Oracle) <rmk+kernel@armlinux.org.uk> | 2025-04-04 15:29:31 +0100 |
commit | d5e7b9897fe649dc426b5808ead4e34d00583323 (patch) | |
tree | ab5c075ee855aa4ef2cb7a000683b12bc7fe5cfa | |
parent | 36663d96b724a5d3ac819911e2e9c5253e58af71 (diff) |
net: wlcore: expand "no fw rx ba" message to include hlid
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
-rw-r--r-- | drivers/net/wireless/ti/wlcore/acx.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/ti/wlcore/acx.c b/drivers/net/wireless/ti/wlcore/acx.c index e820fe694121..9667d0ae533e 100644 --- a/drivers/net/wireless/ti/wlcore/acx.c +++ b/drivers/net/wireless/ti/wlcore/acx.c @@ -1434,7 +1434,8 @@ int wl12xx_acx_set_ba_receiver_session(struct wl1271 *wl, u8 tid_index, /* sometimes we can't start the session */ if (ret == CMD_STATUS_NO_RX_BA_SESSION) { - wl1271_warning("no fw rx ba on tid %d", tid_index); + wl1271_warning("no fw rx ba on tid %u hlid %u", tid_index, + peer_hlid); ret = -EBUSY; goto out; } |