35 lines
1.2 KiB
Diff
35 lines
1.2 KiB
Diff
|
From 21fc038a5e87411e79ecc6a6bf8f06726f8e767d Mon Sep 17 00:00:00 2001
|
||
|
From: Ondrej Jirman <megi@xff.cz>
|
||
|
Date: Mon, 6 Mar 2023 03:46:09 +0100
|
||
|
Subject: [PATCH 147/464] 8723cs: Forward port to Linux 6.3
|
||
|
|
||
|
Signed-off-by: Ondrej Jirman <megi@xff.cz>
|
||
|
---
|
||
|
drivers/staging/rtl8723cs/os_dep/linux/ioctl_cfg80211.c | 4 ++--
|
||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/drivers/staging/rtl8723cs/os_dep/linux/ioctl_cfg80211.c b/drivers/staging/rtl8723cs/os_dep/linux/ioctl_cfg80211.c
|
||
|
index f50a9abaad89..a92ec4d37036 100644
|
||
|
--- a/drivers/staging/rtl8723cs/os_dep/linux/ioctl_cfg80211.c
|
||
|
+++ b/drivers/staging/rtl8723cs/os_dep/linux/ioctl_cfg80211.c
|
||
|
@@ -452,14 +452,14 @@ u8 rtw_cfg80211_ch_switch_notify(_adapter *adapter, u8 ch, u8 bw, u8 offset,
|
||
|
goto exit;
|
||
|
|
||
|
if (started) {
|
||
|
- cfg80211_ch_switch_started_notify(adapter->pnetdev, &chdef, 0, 0, false);
|
||
|
+ cfg80211_ch_switch_started_notify(adapter->pnetdev, &chdef, 0, 0, false, 0);
|
||
|
goto exit;
|
||
|
}
|
||
|
|
||
|
if (!rtw_cfg80211_allow_ch_switch_notify(adapter))
|
||
|
goto exit;
|
||
|
|
||
|
- cfg80211_ch_switch_notify(adapter->pnetdev, &chdef, 0);
|
||
|
+ cfg80211_ch_switch_notify(adapter->pnetdev, &chdef, 0, 0);
|
||
|
|
||
|
exit:
|
||
|
return ret;
|
||
|
--
|
||
|
2.34.1
|
||
|
|