From de93734e224be27681d2367bc6275a4dc58e6dc6 Mon Sep 17 00:00:00 2001 From: Lina Iyer Date: Tue, 15 Dec 2020 13:33:02 -0700 Subject: [PATCH] ANDROID: cpuidle: export cpuidle_driver_state_disabled Export cpuidle_driver_state_disabled() so that CPU idle states may be disabled at runtime for debugging CPU and cluster idle states. Bug: 175718935 Signed-off-by: Lina Iyer Change-Id: Id9038074d64fb6c0444d9aca68420414c3223e93 --- drivers/cpuidle/driver.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/cpuidle/driver.c b/drivers/cpuidle/driver.c index 4070e573bf43..557f59ac47a3 100644 --- a/drivers/cpuidle/driver.c +++ b/drivers/cpuidle/driver.c @@ -381,3 +381,4 @@ void cpuidle_driver_state_disabled(struct cpuidle_driver *drv, int idx, mutex_unlock(&cpuidle_lock); } +EXPORT_SYMBOL_GPL(cpuidle_driver_state_disabled);