#ifndef __DEV_COOLING_H__ #define __DEV_COOLING_H__ #include #include #include #include #if IS_ENABLED(CONFIG_EXYNOS_THERMAL_V2) extern struct thermal_cooling_device *exynos_dev_cooling_register(struct device_node *np, struct exynos_devfreq_data *data); #else static inline struct thermal_cooling_device *exynos_dev_cooling_register(struct device_node *np, struct exynos_devfreq_data *data) { return NULL; } #endif #endif