Commit 14de3903 authored by MyungJoo Ham's avatar 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: default avatarMyungJoo Ham <myungjoo.ham@samsung.com>
parent d54cdf3f
......@@ -541,18 +541,20 @@ static struct devfreq_dev_profile tegra_devfreq_profile = {
static int tegra_governor_get_target(struct devfreq *devfreq,
unsigned long *freq)
{
struct devfreq_dev_status stat;
struct devfreq_dev_status *stat;
struct tegra_devfreq *tegra;
struct tegra_devfreq_device *dev;
unsigned long target_freq = 0;
unsigned int i;
int err;
err = devfreq->profile->get_dev_status(devfreq->dev.parent, &stat);
err = devfreq_update_stats(devfreq);
if (err)
return err;
tegra = stat.private_data;
stat = &devfreq->last_status;
tegra = stat->private_data;
for (i = 0; i < ARRAY_SIZE(tegra->devices); i++) {
dev = &tegra->devices[i];
......
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