Add Kernel 6.3 support

This commit is contained in:
ivanovborislav 2023-05-15 08:35:54 +03:00 committed by GitHub
parent b15b0f57d2
commit 8a616b1760
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -455,7 +455,9 @@ u8 rtw_cfg80211_ch_switch_notify(_adapter *adapter, u8 ch, u8 bw, u8 offset,
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 19, 0))
if (started) {
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 1, 0))
#if (LINUX_VERSION_CODE < KERNEL_VERSION(6, 3, 0))
cfg80211_ch_switch_started_notify(adapter->pnetdev, &chdef, 0, 0, false);
#endif
#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 11, 0))
/* --- cfg80211_ch_switch_started_notfiy() ---
@ -478,7 +480,9 @@ 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))
cfg80211_ch_switch_notify(adapter->pnetdev, &chdef, 0);
#endif
#else
cfg80211_ch_switch_notify(adapter->pnetdev, &chdef);
#endif