summarylogtreecommitdiffstats
path: root/linux48.patch
diff options
context:
space:
mode:
authorgraysky2017-05-19 18:11:15 -0400
committergraysky2017-05-19 18:11:15 -0400
commit1a12347e607a7842f468fe5a04634f8875341d74 (patch)
tree951301932a6f7f2ae2ef38dad73b30f8c88de328 /linux48.patch
parente7af74c74bb53843bd540e084ac8711cecd57e7c (diff)
downloadaur-1a12347e607a7842f468fe5a04634f8875341d74.tar.gz
Update to 6.30.223.271-42
Diffstat (limited to 'linux48.patch')
-rw-r--r--linux48.patch52
1 files changed, 0 insertions, 52 deletions
diff --git a/linux48.patch b/linux48.patch
deleted file mode 100644
index 0f3e81906226..000000000000
--- a/linux48.patch
+++ /dev/null
@@ -1,52 +0,0 @@
-Reference: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=839629
-
---- a/src/wl/sys/wl_cfg80211_hybrid.c 2016-10-03 10:53:55.588036464 +0200
-+++ b/src/wl/sys/wl_cfg80211_hybrid.c 2016-10-03 10:54:11.911695944 +0200
-@@ -2386,8 +2386,15 @@
- s32 err = 0;
-
- if (wl->scan_request) {
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 8, 0)
-+ struct cfg80211_scan_info info = {
-+ .aborted = true
-+ };
- WL_DBG(("%s: Aborting scan\n", __FUNCTION__));
-- cfg80211_scan_done(wl->scan_request, true);
-+ cfg80211_scan_done(wl->scan_request, &info);
-+#else
-+ cfg80211_scan_done(wl->scan_request, true);
-+#endif
- wl->scan_request = NULL;
- }
-
-@@ -2488,7 +2495,14 @@
-
- scan_done_out:
- if (wl->scan_request) {
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 8, 0)
-+ struct cfg80211_scan_info info = {
-+ .aborted = false
-+ };
-+ cfg80211_scan_done(wl->scan_request, &info);
-+#else
- cfg80211_scan_done(wl->scan_request, false);
-+#endif
- wl->scan_request = NULL;
- }
- rtnl_unlock();
-@@ -2913,7 +2927,14 @@
- s32 err = 0;
-
- if (wl->scan_request) {
-- cfg80211_scan_done(wl->scan_request, true);
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 8, 0)
-+ struct cfg80211_scan_info info = {
-+ .aborted = true
-+ };
-+ cfg80211_scan_done(wl->scan_request, &info);
-+#else
-+ cfg80211_scan_done(wl->scan_request, true);
-+#endif
- wl->scan_request = NULL;
- }
-