mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 03:40:35 +09:00
libertas_tf: Use correct channel range in lbtf_geo_init
[ Upstream commit2ec4ad49b9] It seems we should use 'range' instead of 'priv->range' in lbtf_geo_init(), because 'range' is the corret one related to current regioncode. Reported-by: Hulk Robot <hulkci@huawei.com> Fixes:691cdb4938("libertas_tf: command helper functions for libertas_tf") Signed-off-by: YueHaibing <yuehaibing@huawei.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
9311fd211a
commit
81e26cee53
@@ -69,7 +69,7 @@ static void lbtf_geo_init(struct lbtf_private *priv)
|
||||
break;
|
||||
}
|
||||
|
||||
for (ch = priv->range.start; ch < priv->range.end; ch++)
|
||||
for (ch = range->start; ch < range->end; ch++)
|
||||
priv->channels[CHAN_TO_IDX(ch)].flags = 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user