From d648d2bc8391deb2121ebb061766d1688964d4c9 Mon Sep 17 00:00:00 2001 From: xiane Date: Fri, 8 Aug 2025 11:53:57 +0900 Subject: [PATCH] ODROID:-COMMON: net/wirelss: TEMP api setting. - param number is not matched. Signed-off-by: xiane Change-Id: Ica51f3d39667ba7e5e0658a6c84d3b1ec329a759 --- .../rtl8821cu/os_dep/linux/ioctl_cfg80211.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/net/wireless/rtl8821cu/os_dep/linux/ioctl_cfg80211.c b/drivers/net/wireless/rtl8821cu/os_dep/linux/ioctl_cfg80211.c index 5bcceff05608..9724a4fb0f5e 100644 --- a/drivers/net/wireless/rtl8821cu/os_dep/linux/ioctl_cfg80211.c +++ b/drivers/net/wireless/rtl8821cu/os_dep/linux/ioctl_cfg80211.c @@ -465,11 +465,11 @@ u8 rtw_cfg80211_ch_switch_notify(_adapter *adapter, u8 ch, u8 bw, u8 offset, */ #if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 1, 0)) -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 3, 0)) +//#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 3, 0)) cfg80211_ch_switch_started_notify(adapter->pnetdev, &chdef, 0, 0, false, 0); -#else - cfg80211_ch_switch_started_notify(adapter->pnetdev, &chdef, 0, 0, false); -#endif +//#else +// cfg80211_ch_switch_started_notify(adapter->pnetdev, &chdef, 0, 0, false); +//#endif #else cfg80211_ch_switch_started_notify(adapter->pnetdev, &chdef, 0, false); #endif @@ -484,11 +484,11 @@ u8 rtw_cfg80211_ch_switch_notify(_adapter *adapter, u8 ch, u8 bw, u8 offset, goto exit; #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 19, 2)) -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 3, 0)) +//#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 3, 0)) cfg80211_ch_switch_notify(adapter->pnetdev, &chdef, 0, 0); -#else - cfg80211_ch_switch_notify(adapter->pnetdev, &chdef, 0); -#endif +//#else +// cfg80211_ch_switch_notify(adapter->pnetdev, &chdef, 0); +//#endif #else cfg80211_ch_switch_notify(adapter->pnetdev, &chdef); #endif