~ubuntu-branches/ubuntu/hardy/linux-backports-modules-2.6.24/hardy-security

« back to all changes in this revision

Viewing changes to updates/wireless/iwlwifi/mac80211/compatible/include/linux/nl80211.h

  • Committer: Bazaar Package Importer
  • Author(s): , Ben Collins
  • Date: 2008-04-02 06:59:04 UTC
  • Revision ID: james.westby@ubuntu.com-20080402065904-e5knh2gn2hms3xbb
Tags: 2.6.24-14.11
[Ben Collins]

* iwlwifi: Update to iwlwifi-1.2.25 and mac80211-10.0.4
  - LP: #200950
* ubuntu: Slight cleanups to module hiearchy and Makefiles
* mac80211: Enable LED triggers
* iwlwifi: Add LED trigger support (rx and tx only)
  - LP: #176090

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __LINUX_NL80211_H
 
2
#define __LINUX_NL80211_H
 
3
/*
 
4
 * 802.11 netlink interface public header
 
5
 *
 
6
 * Copyright 2006, 2007 Johannes Berg <johannes@sipsolutions.net>
 
7
 */
 
8
 
 
9
/**
 
10
 * enum nl80211_iftype - (virtual) interface types
 
11
 * @NL80211_IFTYPE_UNSPECIFIED: unspecified type, driver decides
 
12
 * @NL80211_IFTYPE_ADHOC: independent BSS member
 
13
 * @NL80211_IFTYPE_STATION: managed BSS member
 
14
 * @NL80211_IFTYPE_AP: access point
 
15
 * @NL80211_IFTYPE_AP_VLAN: VLAN interface for access points
 
16
 * @NL80211_IFTYPE_WDS: wireless distribution interface
 
17
 * @NL80211_IFTYPE_MONITOR: monitor interface receiving all frames
 
18
 * @__NL80211_IFTYPE_AFTER_LAST: internal use
 
19
 *
 
20
 * These values are used with the NL80211_ATTR_IFTYPE
 
21
 * to set the type of an interface.
 
22
 *
 
23
 */
 
24
enum nl80211_iftype {
 
25
        NL80211_IFTYPE_UNSPECIFIED,
 
26
        NL80211_IFTYPE_ADHOC,
 
27
        NL80211_IFTYPE_STATION,
 
28
        NL80211_IFTYPE_AP,
 
29
        NL80211_IFTYPE_AP_VLAN,
 
30
        NL80211_IFTYPE_WDS,
 
31
        NL80211_IFTYPE_MONITOR,
 
32
 
 
33
        /* keep last */
 
34
        __NL80211_IFTYPE_AFTER_LAST
 
35
};
 
36
#define NL80211_IFTYPE_MAX (__NL80211_IFTYPE_AFTER_LAST - 1)
 
37
 
 
38
#endif /* __LINUX_NL80211_H */