diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-11-18 17:21:26 +0530 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-11-20 23:55:38 +0100 |
commit | 3d3c6f54bccf0a621682d17e25cf22895a0c6e5a (patch) | |
tree | f47bbf93551d0b2f2f7ecf85ce45162e491b1c23 /drivers/cpufreq | |
parent | 2239aa3d15056e4be807eaa8d778b247156ce552 (diff) | |
download | op-kernel-dev-3d3c6f54bccf0a621682d17e25cf22895a0c6e5a.zip op-kernel-dev-3d3c6f54bccf0a621682d17e25cf22895a0c6e5a.tar.gz |
cpufreq: exynos: Remove unwanted EXPORT_SYMBOL
The init functions are linked statically (no support for
dynamic loading) and have no other users. Hence remove
EXPORT_SYMBOL for these functions.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r-- | drivers/cpufreq/exynos4210-cpufreq.c | 1 | ||||
-rw-r--r-- | drivers/cpufreq/exynos4x12-cpufreq.c | 1 | ||||
-rw-r--r-- | drivers/cpufreq/exynos5250-cpufreq.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/drivers/cpufreq/exynos4210-cpufreq.c b/drivers/cpufreq/exynos4210-cpufreq.c index f2c7506..dfd1643 100644 --- a/drivers/cpufreq/exynos4210-cpufreq.c +++ b/drivers/cpufreq/exynos4210-cpufreq.c @@ -157,4 +157,3 @@ err_moutcore: pr_debug("%s: failed initialization\n", __func__); return -EINVAL; } -EXPORT_SYMBOL(exynos4210_cpufreq_init); diff --git a/drivers/cpufreq/exynos4x12-cpufreq.c b/drivers/cpufreq/exynos4x12-cpufreq.c index 8683304..efad5e6 100644 --- a/drivers/cpufreq/exynos4x12-cpufreq.c +++ b/drivers/cpufreq/exynos4x12-cpufreq.c @@ -211,4 +211,3 @@ err_moutcore: pr_debug("%s: failed initialization\n", __func__); return -EINVAL; } -EXPORT_SYMBOL(exynos4x12_cpufreq_init); diff --git a/drivers/cpufreq/exynos5250-cpufreq.c b/drivers/cpufreq/exynos5250-cpufreq.c index 9fae466..8feda86 100644 --- a/drivers/cpufreq/exynos5250-cpufreq.c +++ b/drivers/cpufreq/exynos5250-cpufreq.c @@ -236,4 +236,3 @@ err_moutcore: pr_err("%s: failed initialization\n", __func__); return -EINVAL; } -EXPORT_SYMBOL(exynos5250_cpufreq_init); |