mirror of
https://github.com/Mange/rtl8192eu-linux-driver
synced 2024-11-01 03:05:34 +00:00
Add kernel-4.7 and 4.8 compatibility
This commit is contained in:
parent
b1649067e5
commit
4b6fb2ac29
@ -30,6 +30,16 @@
|
|||||||
#define STATION_INFO_TX_PACKETS BIT(NL80211_STA_INFO_TX_PACKETS)
|
#define STATION_INFO_TX_PACKETS BIT(NL80211_STA_INFO_TX_PACKETS)
|
||||||
#define STATION_INFO_ASSOC_REQ_IES 0
|
#define STATION_INFO_ASSOC_REQ_IES 0
|
||||||
#endif /* Linux kernel >= 4.0.0 */
|
#endif /* Linux kernel >= 4.0.0 */
|
||||||
|
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 7, 0))
|
||||||
|
enum ieee80211_band {
|
||||||
|
IEEE80211_BAND_2GHZ = NL80211_BAND_2GHZ,
|
||||||
|
IEEE80211_BAND_5GHZ = NL80211_BAND_5GHZ,
|
||||||
|
IEEE80211_BAND_60GHZ = NL80211_BAND_60GHZ,
|
||||||
|
|
||||||
|
/* keep last */
|
||||||
|
IEEE80211_NUM_BANDS
|
||||||
|
};
|
||||||
|
#endif /* Linux kernel >= 4.7.0 */
|
||||||
|
|
||||||
#include <rtw_wifi_regd.h>
|
#include <rtw_wifi_regd.h>
|
||||||
|
|
||||||
@ -2051,7 +2061,14 @@ void rtw_cfg80211_indicate_scan_done(_adapter *adapter, bool aborted)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,8,0)
|
||||||
|
struct cfg80211_scan_info info = {
|
||||||
|
.aborted = aborted
|
||||||
|
};
|
||||||
|
cfg80211_scan_done(pwdev_priv->scan_request, &info);
|
||||||
|
#else
|
||||||
cfg80211_scan_done(pwdev_priv->scan_request, aborted);
|
cfg80211_scan_done(pwdev_priv->scan_request, aborted);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
pwdev_priv->scan_request = NULL;
|
pwdev_priv->scan_request = NULL;
|
||||||
|
@ -10,6 +10,12 @@
|
|||||||
|
|
||||||
#include <rtw_wifi_regd.h>
|
#include <rtw_wifi_regd.h>
|
||||||
|
|
||||||
|
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 7, 0))
|
||||||
|
#define IEEE80211_BAND_2GHZ NL80211_BAND_2GHZ
|
||||||
|
#define IEEE80211_BAND_5GHZ NL80211_BAND_5GHZ
|
||||||
|
#define IEEE80211_NUM_BANDS NUM_NL80211_BANDS
|
||||||
|
#endif /* Linux kernel >= 4.7.0 */
|
||||||
|
|
||||||
static struct country_code_to_enum_rd allCountries[] = {
|
static struct country_code_to_enum_rd allCountries[] = {
|
||||||
{COUNTRY_CODE_USER, "RD"},
|
{COUNTRY_CODE_USER, "RD"},
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user