PM / devfreq: Fix kernel warning with cpufreq passive register fail
authorChristian Marangi <ansuelsmth@gmail.com>
Sun, 19 Jun 2022 22:29:39 +0000 (00:29 +0200)
committerChanwoo Choi <cw00.choi@samsung.com>
Wed, 29 Jun 2022 20:11:17 +0000 (05:11 +0900)
commit82c66d2bbbeda9e493487e7413769087a0b46250
tree51a2013ac1d03036809f963f90fc5d05d726b8c3
parentb5d281f6c16dd432b618bdfd36ddba1a58d5b603
PM / devfreq: Fix kernel warning with cpufreq passive register fail

Remove cpufreq_passive_unregister_notifier from
cpufreq_passive_register_notifier in case of error as devfreq core
already call unregister on GOV_START fail.

This fix the kernel always printing a WARN on governor PROBE_DEFER as
cpufreq_passive_unregister_notifier is called two times and return
error on the second call as the cpufreq is already unregistered.

Fixes: a03dacb0316f ("PM / devfreq: Add cpu based scaling support to passive governor")
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
drivers/devfreq/governor_passive.c