From 80de9b19d91924aa803aa9e448c8607fa97e105a Mon Sep 17 00:00:00 2001 From: Shunqian Zheng Date: Fri, 19 Oct 2018 14:14:08 +0800 Subject: [PATCH] devfreq_cooling: inline the of_devfreq_cooling_register_power() Make of_devfreq_cooling_register_power() as static inline. This fixes the building error when CONFIG_THERMAL is disabled. Change-Id: I3d88a3679de279a7ee7eadae7243b9661fdddf75 Signed-off-by: Shunqian Zheng --- include/linux/devfreq_cooling.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/devfreq_cooling.h b/include/linux/devfreq_cooling.h index c35d0c0e0ada..b84123b62d83 100644 --- a/include/linux/devfreq_cooling.h +++ b/include/linux/devfreq_cooling.h @@ -56,7 +56,7 @@ void devfreq_cooling_unregister(struct thermal_cooling_device *dfc); #else /* !CONFIG_DEVFREQ_THERMAL */ -struct thermal_cooling_device * +static inline struct thermal_cooling_device * of_devfreq_cooling_register_power(struct device_node *np, struct devfreq *df, struct devfreq_cooling_power *dfc_power) {