diff options
Diffstat (limited to 'net/mac80211/debugfs_netdev.c')
| -rw-r--r-- | net/mac80211/debugfs_netdev.c | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/net/mac80211/debugfs_netdev.c b/net/mac80211/debugfs_netdev.c index cbde5cc49a4..059bbb82e84 100644 --- a/net/mac80211/debugfs_netdev.c +++ b/net/mac80211/debugfs_netdev.c @@ -515,6 +515,9 @@ IEEE80211_IF_FILE(dot11MeshHWMProotInterval,  		  u.mesh.mshcfg.dot11MeshHWMProotInterval, DEC);  IEEE80211_IF_FILE(dot11MeshHWMPconfirmationInterval,  		  u.mesh.mshcfg.dot11MeshHWMPconfirmationInterval, DEC); +IEEE80211_IF_FILE(power_mode, u.mesh.mshcfg.power_mode, DEC); +IEEE80211_IF_FILE(dot11MeshAwakeWindowDuration, +		  u.mesh.mshcfg.dot11MeshAwakeWindowDuration, DEC);  #endif  #define DEBUGFS_ADD_MODE(name, mode) \ @@ -620,6 +623,8 @@ static void add_mesh_config(struct ieee80211_sub_if_data *sdata)  	MESHPARAMS_ADD(dot11MeshHWMPactivePathToRootTimeout);  	MESHPARAMS_ADD(dot11MeshHWMProotInterval);  	MESHPARAMS_ADD(dot11MeshHWMPconfirmationInterval); +	MESHPARAMS_ADD(power_mode); +	MESHPARAMS_ADD(dot11MeshAwakeWindowDuration);  #undef MESHPARAMS_ADD  }  #endif  |