added support for rhel9.3
This commit is contained in:
parent
305a9123d9
commit
dcc8870829
3
Makefile
3
Makefile
@ -67,6 +67,9 @@ ifeq (${RHEL_VER},9)
|
||||
ifeq ($(shell test $(RHEL_SVER) -ge 284; echo $$?),0)
|
||||
EXTRA_CFLAGS += -DRHEL92 -DRHEL88
|
||||
endif
|
||||
ifeq ($(shell test $(RHEL_SVER) -ge 362; echo $$?),0)
|
||||
EXTRA_CFLAGS += -DRHEL93
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
|
@ -465,7 +465,7 @@ u8 rtw_cfg80211_ch_switch_notify(_adapter *adapter, u8 ch, u8 bw, u8 offset,
|
||||
*/
|
||||
|
||||
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 1, 0) || defined(RHEL88))
|
||||
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 3, 0))
|
||||
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 3, 0) || defined(RHEL93))
|
||||
cfg80211_ch_switch_started_notify(adapter->pnetdev, &chdef, 0, 0, false, 0);
|
||||
#else
|
||||
cfg80211_ch_switch_started_notify(adapter->pnetdev, &chdef, 0, 0, false);
|
||||
@ -484,7 +484,7 @@ 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) || defined(RHEL88))
|
||||
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 3, 0))
|
||||
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 3, 0) || defined(RHEL93))
|
||||
cfg80211_ch_switch_notify(adapter->pnetdev, &chdef, 0, 0);
|
||||
#else
|
||||
cfg80211_ch_switch_notify(adapter->pnetdev, &chdef, 0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user