aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'drivers')
-rw-r--r--drivers/devfreq/devfreq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/devfreq/devfreq.c b/drivers/devfreq/devfreq.c
index 08dfcdc2ac58..8928383a1fa1 100644
--- a/drivers/devfreq/devfreq.c
+++ b/drivers/devfreq/devfreq.c
@@ -228,7 +228,7 @@ static struct devfreq_governor *find_devfreq_governor(const char *name)
228 * if is not found. This can happen when both drivers (the governor driver 228 * if is not found. This can happen when both drivers (the governor driver
229 * and the driver that call devfreq_add_device) are built as modules. 229 * and the driver that call devfreq_add_device) are built as modules.
230 * devfreq_list_lock should be held by the caller. Returns the matched 230 * devfreq_list_lock should be held by the caller. Returns the matched
231 * governor's pointer. 231 * governor's pointer or an error pointer.
232 */ 232 */
233static struct devfreq_governor *try_then_request_governor(const char *name) 233static struct devfreq_governor *try_then_request_governor(const char *name)
234{ 234{
@@ -254,7 +254,7 @@ static struct devfreq_governor *try_then_request_governor(const char *name)
254 /* Restore previous state before return */ 254 /* Restore previous state before return */
255 mutex_lock(&devfreq_list_lock); 255 mutex_lock(&devfreq_list_lock);
256 if (err) 256 if (err)
257 return NULL; 257 return ERR_PTR(err);
258 258
259 governor = find_devfreq_governor(name); 259 governor = find_devfreq_governor(name);
260 } 260 }