Commit 89c5c843 authored by Michal Kazior's avatar Michal Kazior Committed by Kalle Valo

ath10k: setup min channel power to a reasonable value

This will be needed for proper support of (user)
configurable tx power level.
Signed-off-by: default avatarMichal Kazior <michal.kazior@tieto.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent e63b33f3
...@@ -450,7 +450,7 @@ static int ath10k_vdev_start(struct ath10k_vif *arvif) ...@@ -450,7 +450,7 @@ static int ath10k_vdev_start(struct ath10k_vif *arvif)
arg.channel.mode = chan_to_phymode(&conf->chandef); arg.channel.mode = chan_to_phymode(&conf->chandef);
arg.channel.min_power = channel->max_power * 3; arg.channel.min_power = 0;
arg.channel.max_power = channel->max_power * 4; arg.channel.max_power = channel->max_power * 4;
arg.channel.max_reg_power = channel->max_reg_power * 4; arg.channel.max_reg_power = channel->max_reg_power * 4;
arg.channel.max_antenna_gain = channel->max_antenna_gain; arg.channel.max_antenna_gain = channel->max_antenna_gain;
...@@ -529,7 +529,7 @@ static int ath10k_monitor_start(struct ath10k *ar, int vdev_id) ...@@ -529,7 +529,7 @@ static int ath10k_monitor_start(struct ath10k *ar, int vdev_id)
don't have any vifs? */ don't have any vifs? */
arg.channel.mode = chan_to_phymode(&ar->hw->conf.chandef); arg.channel.mode = chan_to_phymode(&ar->hw->conf.chandef);
arg.channel.min_power = channel->max_power * 3; arg.channel.min_power = 0;
arg.channel.max_power = channel->max_power * 4; arg.channel.max_power = channel->max_power * 4;
arg.channel.max_reg_power = channel->max_reg_power * 4; arg.channel.max_reg_power = channel->max_reg_power * 4;
arg.channel.max_antenna_gain = channel->max_antenna_gain; arg.channel.max_antenna_gain = channel->max_antenna_gain;
...@@ -1375,7 +1375,7 @@ static int ath10k_update_channel_list(struct ath10k *ar) ...@@ -1375,7 +1375,7 @@ static int ath10k_update_channel_list(struct ath10k *ar)
ch->passive = passive; ch->passive = passive;
ch->freq = channel->center_freq; ch->freq = channel->center_freq;
ch->min_power = channel->max_power * 3; ch->min_power = 0;
ch->max_power = channel->max_power * 4; ch->max_power = channel->max_power * 4;
ch->max_reg_power = channel->max_reg_power * 4; ch->max_reg_power = channel->max_reg_power * 4;
ch->max_antenna_gain = channel->max_antenna_gain; ch->max_antenna_gain = channel->max_antenna_gain;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment