]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
mac80211: Add power to debugfs.
authorBen Greear <greearb@candelatech.com>
Tue, 15 Feb 2011 21:11:22 +0000 (13:11 -0800)
committerJohn W. Linville <linville@tuxdriver.com>
Fri, 18 Feb 2011 21:53:21 +0000 (16:53 -0500)
Signed-off-by: Ben Greear <greearb@candelatech.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
net/mac80211/debugfs.c

index 1f02e599a3185c06de0b214711eece19ff82c136..51f0d780dafadfd300719a3b2f19514940824383 100644 (file)
@@ -60,6 +60,10 @@ static const struct file_operations name## _ops = {                  \
        debugfs_create_file(#name, mode, phyd, local, &name## _ops);
 
 
+DEBUGFS_READONLY_FILE(user_power, "%d",
+                     local->user_power_level);
+DEBUGFS_READONLY_FILE(power, "%d",
+                     local->hw.conf.power_level);
 DEBUGFS_READONLY_FILE(frequency, "%d",
                      local->hw.conf.channel->center_freq);
 DEBUGFS_READONLY_FILE(total_ps_buffered, "%d",
@@ -391,6 +395,8 @@ void debugfs_hw_add(struct ieee80211_local *local)
        DEBUGFS_ADD(uapsd_queues);
        DEBUGFS_ADD(uapsd_max_sp_len);
        DEBUGFS_ADD(channel_type);
+       DEBUGFS_ADD(user_power);
+       DEBUGFS_ADD(power);
 
        statsd = debugfs_create_dir("statistics", phyd);