aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/cpuidle/driver.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/cpuidle/driver.c b/drivers/cpuidle/driver.c
index 2257004fe33d..826b5c0aa12b 100644
--- a/drivers/cpuidle/driver.c
+++ b/drivers/cpuidle/driver.c
@@ -45,8 +45,11 @@ EXPORT_SYMBOL_GPL(cpuidle_register_driver);
45 */ 45 */
46void cpuidle_unregister_driver(struct cpuidle_driver *drv) 46void cpuidle_unregister_driver(struct cpuidle_driver *drv)
47{ 47{
48 if (!drv) 48 if (drv != cpuidle_curr_driver) {
49 WARN(1, "invalid cpuidle_unregister_driver(%s)\n",
50 drv->name);
49 return; 51 return;
52 }
50 53
51 spin_lock(&cpuidle_driver_lock); 54 spin_lock(&cpuidle_driver_lock);
52 cpuidle_curr_driver = NULL; 55 cpuidle_curr_driver = NULL;