diff options
Diffstat (limited to 'drivers/thermal')
-rw-r--r-- | drivers/thermal/db8500_cpufreq_cooling.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thermal/db8500_cpufreq_cooling.c b/drivers/thermal/db8500_cpufreq_cooling.c index 21419851fc02..786d19263ab0 100644 --- a/drivers/thermal/db8500_cpufreq_cooling.c +++ b/drivers/thermal/db8500_cpufreq_cooling.c | |||
@@ -37,7 +37,7 @@ static int db8500_cpufreq_cooling_probe(struct platform_device *pdev) | |||
37 | cpumask_set_cpu(0, &mask_val); | 37 | cpumask_set_cpu(0, &mask_val); |
38 | cdev = cpufreq_cooling_register(&mask_val); | 38 | cdev = cpufreq_cooling_register(&mask_val); |
39 | 39 | ||
40 | if (IS_ERR_OR_NULL(cdev)) { | 40 | if (IS_ERR(cdev)) { |
41 | dev_err(&pdev->dev, "Failed to register cooling device\n"); | 41 | dev_err(&pdev->dev, "Failed to register cooling device\n"); |
42 | return PTR_ERR(cdev); | 42 | return PTR_ERR(cdev); |
43 | } | 43 | } |