Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 381733cc authored by Wey-Yi Guy's avatar Wey-Yi Guy Committed by Reinette Chatre
Browse files

iwlwifi: remove powersave debugfs if it is not supported



For the devices do not have power save support, remove the power save
control related debugfs files.

Signed-off-by: default avatarWey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: default avatarReinette Chatre <reinette.chatre@intel.com>
parent 1e460535
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -1612,8 +1612,11 @@ int iwl_dbgfs_register(struct iwl_priv *priv, const char *name)
	DEBUGFS_ADD_FILE(interrupt, dir_data, S_IWUSR | S_IRUSR);
	DEBUGFS_ADD_FILE(qos, dir_data, S_IRUSR);
	DEBUGFS_ADD_FILE(led, dir_data, S_IRUSR);
	DEBUGFS_ADD_FILE(sleep_level_override, dir_data, S_IWUSR | S_IRUSR);
	if (!priv->cfg->broken_powersave) {
		DEBUGFS_ADD_FILE(sleep_level_override, dir_data,
				 S_IWUSR | S_IRUSR);
		DEBUGFS_ADD_FILE(current_sleep_command, dir_data, S_IRUSR);
	}
	DEBUGFS_ADD_FILE(thermal_throttling, dir_data, S_IRUSR);
	DEBUGFS_ADD_FILE(disable_ht40, dir_data, S_IWUSR | S_IRUSR);
	DEBUGFS_ADD_FILE(rx_statistics, dir_debug, S_IRUSR);