summaryrefslogtreecommitdiff
path: root/mac80211.h
blob: bae28b1a982af63dd5f512567a5a2efd1f4cfc93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef MAC80211_H
#define MAC80211_H

#include "config.h"
#include "die.h"

#ifdef HAVE_LIBNL
extern void enter_rfmon_mac80211(const char *device, char **mondev);
extern void leave_rfmon_mac80211(const char *mondev);
#else
static inline void enter_rfmon_mac80211(const char *device, char **mondev)
{
    panic("No built-in libnl support!\n");
}

static inline void leave_rfmon_mac80211(const char *mondev)
{
}
#endif /* HAVE_LIBNL */

#endif /* MAC80211_H */
tion value='0' selected='selected'>includemode:
authorBrian Norris <computersforpeace@gmail.com>2016-09-28 13:34:58 -0700
committerBrian Norris <computersforpeace@gmail.com>2016-10-03 09:51:35 -0700
commit1e2da4ad2e9b23556630bc774d3b1aaa61c0a69e (patch)
treec886868b46dac770418459eaaa0988504011f2e8 /Documentation/devicetree
parent5e149073ba427f99c5e751e558670d034a278f77 (diff)
parentd44154f969a44269a9288c274c1c2fd9e85df8a5 (diff)
Merge tag 'for-4.9' of github.com:linux-nand/linux
" Notable core changes: - add the infrastructure to automate NAND timings configuration - provide a generic DT property to maximize ECC strength The rest is just a bunch of minor drivers and core fixes/cleanup patches. " Also not noted: some refactoring in the core bad block table handling, to help with improving some of the logic in error cases. Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'Documentation/devicetree')