From 8bec8916b8a8a13ba57130e99ef733fb27b66a1d Mon Sep 17 00:00:00 2001 From: Norbert Brondeau <733738+nbrondeau@users.noreply.github.com> Date: Tue, 9 Jan 2024 12:33:09 +0100 Subject: [PATCH 1/2] Fix Build with Kernel 6.7 --- os_dep/linux/ioctl_cfg80211.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/os_dep/linux/ioctl_cfg80211.c b/os_dep/linux/ioctl_cfg80211.c index fd06b13..fdcfd73 100644 --- a/os_dep/linux/ioctl_cfg80211.c +++ b/os_dep/linux/ioctl_cfg80211.c @@ -5089,6 +5089,22 @@ static int cfg80211_rtw_start_ap(struct wiphy *wiphy, struct net_device *ndev, return ret; } +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 7, 0)) +static int cfg80211_rtw_change_beacon(struct wiphy *wiphy, struct net_device *ndev, + struct cfg80211_ap_update *params) +{ + struct cfg80211_beacon_data *info = ¶ms->beacon; + + int ret = 0; + _adapter *adapter = (_adapter *)rtw_netdev_priv(ndev); + + RTW_INFO(FUNC_NDEV_FMT"\n", FUNC_NDEV_ARG(ndev)); + + ret = rtw_add_beacon(adapter, info->head, info->head_len, info->tail, info->tail_len); + + return ret; +} +#else static int cfg80211_rtw_change_beacon(struct wiphy *wiphy, struct net_device *ndev, struct cfg80211_beacon_data *info) { From aad2bbd5ada285e46fe658dab9c5c887429b4e06 Mon Sep 17 00:00:00 2001 From: Norbert Brondeau <733738+nbrondeau@users.noreply.github.com> Date: Tue, 9 Jan 2024 15:24:52 +0100 Subject: [PATCH 2/2] Update ioctl_cfg80211.c ... --- os_dep/linux/ioctl_cfg80211.c | 1 + 1 file changed, 1 insertion(+) diff --git a/os_dep/linux/ioctl_cfg80211.c b/os_dep/linux/ioctl_cfg80211.c index fdcfd73..aac0d11 100644 --- a/os_dep/linux/ioctl_cfg80211.c +++ b/os_dep/linux/ioctl_cfg80211.c @@ -5117,6 +5117,7 @@ static int cfg80211_rtw_change_beacon(struct wiphy *wiphy, struct net_device *nd return ret; } +#endif #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,19, 2)) static int cfg80211_rtw_stop_ap(struct wiphy *wiphy, struct net_device *ndev, unsigned int link_id)