提交 14de3903 编写于 作者: M MyungJoo Ham

PM / devfreq: tegra: Update governor to use devfreq_update_stats()

Direct invocation of get_dev_status() is no more recommended.
Signed-off-by: NMyungJoo Ham <myungjoo.ham@samsung.com>
上级 d54cdf3f
...@@ -541,18 +541,20 @@ static struct devfreq_dev_profile tegra_devfreq_profile = { ...@@ -541,18 +541,20 @@ static struct devfreq_dev_profile tegra_devfreq_profile = {
static int tegra_governor_get_target(struct devfreq *devfreq, static int tegra_governor_get_target(struct devfreq *devfreq,
unsigned long *freq) unsigned long *freq)
{ {
struct devfreq_dev_status stat; struct devfreq_dev_status *stat;
struct tegra_devfreq *tegra; struct tegra_devfreq *tegra;
struct tegra_devfreq_device *dev; struct tegra_devfreq_device *dev;
unsigned long target_freq = 0; unsigned long target_freq = 0;
unsigned int i; unsigned int i;
int err; int err;
err = devfreq->profile->get_dev_status(devfreq->dev.parent, &stat); err = devfreq_update_stats(devfreq);
if (err) if (err)
return err; return err;
tegra = stat.private_data; stat = &devfreq->last_status;
tegra = stat->private_data;
for (i = 0; i < ARRAY_SIZE(tegra->devices); i++) { for (i = 0; i < ARRAY_SIZE(tegra->devices); i++) {
dev = &tegra->devices[i]; dev = &tegra->devices[i];
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册