mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
It allows user-space fetch associated STAs and e.g. iwinfo/luci display them. git-svn-id: svn://svn.openwrt.org/openwrt/branches/chaos_calmer@48167 3c298f89-4303-0410-b956-a3cf2f4a3e73
24 lines
732 B
Diff
24 lines
732 B
Diff
From: Hauke Mehrtens <hauke@hauke-m.de>
|
|
Date: Sat, 19 Sep 2015 12:47:20 +0200
|
|
Subject: [PATCH] brcmfmac: include linux/atomic.h
|
|
|
|
brcmfmac uses atomic_or() and other atomic_* functions, but does not
|
|
include linux/atomic.h. This file gets included by some other header
|
|
file so this normally does not cause problems.
|
|
|
|
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
|
|
Acked-by: Arend van Spriel <arend@broadcom.com>
|
|
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
|
|
---
|
|
|
|
--- a/drivers/net/wireless/brcm80211/brcmfmac/sdio.c
|
|
+++ b/drivers/net/wireless/brcm80211/brcmfmac/sdio.c
|
|
@@ -15,6 +15,7 @@
|
|
*/
|
|
|
|
#include <linux/types.h>
|
|
+#include <linux/atomic.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/kthread.h>
|
|
#include <linux/printk.h>
|