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

Commit 23c0fcc6 authored by Wey-Yi Guy's avatar Wey-Yi Guy
Browse files

iwlagn: all _agn devices support power save mode



Remove broken_power_save checking

Signed-off-by: default avatarWey-Yi Guy <wey-yi.w.guy@intel.com>
parent 8ff84a2c
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -2828,7 +2828,6 @@ static int iwl_mac_setup_register(struct iwl_priv *priv,

	hw->max_tx_aggregation_subframes = LINK_QUAL_AGG_FRAME_LIMIT_DEF;

	if (!priv->cfg->base_params->broken_powersave)
	hw->flags |= IEEE80211_HW_SUPPORTS_PS |
		     IEEE80211_HW_SUPPORTS_DYNAMIC_PS;

+0 −1
Original line number Diff line number Diff line
@@ -269,7 +269,6 @@ struct iwl_base_params {
	const u16 max_ll_items;
	const bool shadow_ram_support;
	u16 led_compensation;
	const bool broken_powersave;
	int chain_noise_num_beacons;
	bool adv_thermal_throttle;
	bool support_ct_kill_exit;
+2 −5
Original line number Diff line number Diff line
@@ -1723,11 +1723,8 @@ int iwl_dbgfs_register(struct iwl_priv *priv, const char *name)
	DEBUGFS_ADD_FILE(status, dir_data, S_IRUSR);
	DEBUGFS_ADD_FILE(interrupt, dir_data, S_IWUSR | S_IRUSR);
	DEBUGFS_ADD_FILE(qos, dir_data, S_IRUSR);
	if (!priv->cfg->base_params->broken_powersave) {
		DEBUGFS_ADD_FILE(sleep_level_override, dir_data,
				 S_IWUSR | S_IRUSR);
	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);
+1 −3
Original line number Diff line number Diff line
@@ -354,9 +354,7 @@ static void iwl_power_build_cmd(struct iwl_priv *priv,

	dtimper = priv->hw->conf.ps_dtim_period ?: 1;

	if (priv->cfg->base_params->broken_powersave)
		iwl_power_sleep_cam_cmd(priv, cmd);
	else if (priv->hw->conf.flags & IEEE80211_CONF_IDLE)
	if (priv->hw->conf.flags & IEEE80211_CONF_IDLE)
		iwl_static_sleep_cmd(priv, cmd, IWL_POWER_INDEX_5, 20);
	else if (priv->cfg->ops->lib->tt_ops.lower_power_detection &&
		 priv->cfg->ops->lib->tt_ops.tt_power_mode &&