diff options
author | Christian 'Ansuel' Marangi <ansuelsmth@gmail.com> | 2022-06-15 01:09:50 +0200 |
---|---|---|
committer | Chanwoo Choi <cw00.choi@samsung.com> | 2022-06-30 05:11:17 +0900 |
commit | e52b045fe07d7874474665c843befa7521853234 (patch) | |
tree | 2e89462e14f166a086e5e576b099f4b5fdd0d1ca | |
parent | 57e00b40033a376de3f3cf0bb9bf7590d2dd679d (diff) | |
download | linux-e52b045fe07d7874474665c843befa7521853234.tar.bz2 |
PM / devfreq: Mute warning on governor PROBE_DEFER
Don't print warning when a governor PROBE_DEFER as it's not a real
GOV_START fail.
Fixes: a03dacb0316f ("PM / devfreq: Add cpu based scaling support to passive governor")
Signed-off-by: Christian 'Ansuel' Marangi <ansuelsmth@gmail.com>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
-rw-r--r-- | drivers/devfreq/devfreq.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/devfreq/devfreq.c b/drivers/devfreq/devfreq.c index 01474daf4548..80a1235ef8fb 100644 --- a/drivers/devfreq/devfreq.c +++ b/drivers/devfreq/devfreq.c @@ -932,8 +932,9 @@ struct devfreq *devfreq_add_device(struct device *dev, err = devfreq->governor->event_handler(devfreq, DEVFREQ_GOV_START, NULL); if (err) { - dev_err(dev, "%s: Unable to start governor for the device\n", - __func__); + dev_err_probe(dev, err, + "%s: Unable to start governor for the device\n", + __func__); goto err_init; } create_sysfs_files(devfreq, devfreq->governor); |