~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/origin/net/mac80211/debugfs_key.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 __MAC80211_DEBUGFS_KEY_H
 
2
#define __MAC80211_DEBUGFS_KEY_H
 
3
 
 
4
#ifdef CONFIG_MAC80211_DEBUGFS
 
5
void ieee80211_debugfs_key_add(struct ieee80211_local *local,
 
6
                               struct ieee80211_key *key);
 
7
void ieee80211_debugfs_key_remove(struct ieee80211_key *key);
 
8
void ieee80211_debugfs_key_add_default(struct ieee80211_sub_if_data *sdata);
 
9
void ieee80211_debugfs_key_remove_default(struct ieee80211_sub_if_data *sdata);
 
10
void ieee80211_debugfs_key_sta_link(struct ieee80211_key *key,
 
11
                                    struct sta_info *sta);
 
12
void ieee80211_debugfs_key_sta_del(struct ieee80211_key *key,
 
13
                                   struct sta_info *sta);
 
14
#else
 
15
static inline void ieee80211_debugfs_key_add(struct ieee80211_local *local,
 
16
                                             struct ieee80211_key *key)
 
17
{}
 
18
static inline void ieee80211_debugfs_key_remove(struct ieee80211_key *key)
 
19
{}
 
20
static inline void ieee80211_debugfs_key_add_default(
 
21
        struct ieee80211_sub_if_data *sdata)
 
22
{}
 
23
static inline void ieee80211_debugfs_key_remove_default(
 
24
        struct ieee80211_sub_if_data *sdata)
 
25
{}
 
26
static inline void ieee80211_debugfs_key_sta_link(
 
27
        struct ieee80211_key *key, struct sta_info *sta)
 
28
{}
 
29
static inline void ieee80211_debugfs_key_sta_del(struct ieee80211_key *key,
 
30
                                                 struct sta_info *sta)
 
31
{}
 
32
#endif
 
33
 
 
34
#endif /* __MAC80211_DEBUGFS_KEY_H */