aboutsummaryrefslogtreecommitdiff
path: root/drivers/clocksource
diff options
context:
space:
mode:
authorGravatar Krzysztof Kozlowski <k.kozlowski@samsung.com> 2015-04-30 13:42:52 +0900
committerGravatar Daniel Lezcano <daniel.lezcano@linaro.org> 2015-06-02 12:10:09 +0200
commit6c10bf637207818f3caaea965d4b72007c36fc92 (patch)
tree6b54eebc2205e65601eefe3f521ae37438cc2e1c /drivers/clocksource
parentclocksource/drivers/exynos_mct: Change exynos4_mct_tick_clear return type to ... (diff)
downloadlinux-6c10bf637207818f3caaea965d4b72007c36fc92.tar.gz
linux-6c10bf637207818f3caaea965d4b72007c36fc92.tar.bz2
linux-6c10bf637207818f3caaea965d4b72007c36fc92.zip
clocksource/drivers/exynos_mct: Staticize struct clocksource
The struct clocksource 'mct_frc' is not exported and used outside so make it static. Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Diffstat (limited to 'drivers/clocksource')
-rw-r--r--drivers/clocksource/exynos_mct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clocksource/exynos_mct.c b/drivers/clocksource/exynos_mct.c
index 87c2e558c465..8b2a9fc66dcc 100644
--- a/drivers/clocksource/exynos_mct.c
+++ b/drivers/clocksource/exynos_mct.c
@@ -209,7 +209,7 @@ static void exynos4_frc_resume(struct clocksource *cs)
exynos4_mct_frc_start();
}
-struct clocksource mct_frc = {
+static struct clocksource mct_frc = {
.name = "mct-frc",
.rating = 400,
.read = exynos4_frc_read,