- Remove static keyword to use the function in another file.
- exynos_devfreq.c will use this function for get_freq()
Change-Id: I80ab48027ccdf7166d60e6be3708d9146b218124
Signed-off-by: Hanjun Shin <hanjun.shin@samsung.com>
}
EXPORT_SYMBOL(exynos_pd_lookup_name);
-static int exynos_pd_status(struct exynos_pm_domain *pd)
+int exynos_pd_status(struct exynos_pm_domain *pd)
{
int status;
return status;
}
-
+EXPORT_SYMBOL(exynos_pd_status);
/* Power domain on sequence.
* on_pre, on_post functions are registered as notification handler at CAL code.
*/
#ifdef CONFIG_EXYNOS_PD
struct exynos_pm_domain *exynos_pd_lookup_name(const char *domain_name);
+int exynos_pd_status(struct exynos_pm_domain *pd);
#else
static inline struct exynos_pm_domain *exynos_pd_lookup_name(const char *domain_name)
{
return NULL;
}
+static inline int exynos_pd_status(struct exynos_pm_domain *pd)
+{
+ return NULL;
+}
#endif
#ifdef CONFIG_SND_SOC_SAMSUNG_VTS