diff options
author | 2018-05-17 11:59:06 +0200 | |
---|---|---|
committer | 2018-05-17 11:59:06 +0200 | |
commit | e008690e4e921d1acf3c3a2397efe460b5abee01 (patch) | |
tree | 518e9b92fb738c8ba58aeae93f000bb953ad3f01 | |
parent | Merge branch 'opp/genpd-pstate-updates' of git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm (diff) | |
parent | PM / OPP: silence an uninitialized variable warning (diff) | |
download | wireguard-linux-e008690e4e921d1acf3c3a2397efe460b5abee01.tar.xz wireguard-linux-e008690e4e921d1acf3c3a2397efe460b5abee01.zip |
Merge branch 'opp/linux-next' of git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm into pm-opp
Merge an OPP fix for v4.18 from Viresh Kumar.
* 'opp/linux-next' of git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm:
PM / OPP: silence an uninitialized variable warning
Diffstat (limited to '')
-rw-r--r-- | drivers/opp/of.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/opp/of.c b/drivers/opp/of.c index 7026e9f484ea..6d15f05bfc28 100644 --- a/drivers/opp/of.c +++ b/drivers/opp/of.c @@ -287,7 +287,7 @@ static int _opp_add_static_v2(struct opp_table *opp_table, struct device *dev, struct device_node *np) { struct dev_pm_opp *new_opp; - u64 rate; + u64 rate = 0; u32 val; int ret; bool rate_not_available = false; |