Skip to content

Commit

Permalink
Linux 6.7 compat: cfg80211_ap_update
Browse files Browse the repository at this point in the history
  • Loading branch information
RinCat committed Nov 15, 2023
1 parent a0003d7 commit 980d7cc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# REALTEK RTL88x2B USB Linux Driver
**Current Driver Version**: 5.13.1
**Support Kernel**: 2.6.24 ~ 6.4 (with unofficial patches)
**Support Kernel**: 2.6.24 ~ 6.7 (with unofficial patches)

Linux in-tree rtw8822bu driver is working in process, check [this](https://lore.kernel.org/lkml/20220518082318.3898514-1-s.hauer@pengutronix.de/) patchset.

Expand Down
9 changes: 9 additions & 0 deletions os_dep/linux/ioctl_cfg80211.c
Original file line number Diff line number Diff line change
Expand Up @@ -5392,14 +5392,23 @@ 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 *ap)
#else
struct cfg80211_beacon_data *info)
#endif
{
int ret = 0;
_adapter *adapter = (_adapter *)rtw_netdev_priv(ndev);

RTW_INFO(FUNC_NDEV_FMT"\n", FUNC_NDEV_ARG(ndev));

#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 7, 0))
ret = rtw_add_beacon(adapter, ap->beacon.head, ap->beacon.head_len,
ap->beacon.tail, ap->beacon.tail_len);
#else
ret = rtw_add_beacon(adapter, info->head, info->head_len, info->tail, info->tail_len);
#endif

return ret;
}
Expand Down

0 comments on commit 980d7cc

Please sign in to comment.