From 306f3e62cf7cddf8cee74f70f88a7a7b3af46f56 Mon Sep 17 00:00:00 2001 From: Larry Finger Date: Mon, 4 Dec 2023 10:54:18 -0600 Subject: [PATCH] rtl8188eu: Fix build errors for kernel 6.7 Signed-off-by: Larry Finger --- ioctl_cfg80211.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ioctl_cfg80211.c b/ioctl_cfg80211.c index f7eba62..c6ae5aa 100644 --- a/ioctl_cfg80211.c +++ b/ioctl_cfg80211.c @@ -4073,10 +4073,17 @@ static int cfg80211_rtw_start_ap(struct wiphy *wiphy, struct net_device *ndev, } static int cfg80211_rtw_change_beacon(struct wiphy *wiphy, struct net_device *ndev, +#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 7, 0) + struct cfg80211_ap_update *params) +#else struct cfg80211_beacon_data *info) +#endif { int ret = 0; _adapter *adapter = (_adapter *)rtw_netdev_priv(ndev); +#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 7, 0) + struct cfg80211_beacon_data *info = ¶ms->beacon; +#endif RTW_INFO(FUNC_NDEV_FMT"\n", FUNC_NDEV_ARG(ndev));