diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-06-18 01:30:57 +0300 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-07-28 18:10:30 +0900 |
commit | 2b7bf930ae762d3124317e36f26a7567dc04e835 (patch) | |
tree | 966978643ab2186f8f4d44ed9957ee56af62c9cc /arch/sh/boards | |
parent | 306cfd630a4d121cf4e08b894d8b4c4cf106e57e (diff) | |
download | linux-3.10-2b7bf930ae762d3124317e36f26a7567dc04e835.tar.gz linux-3.10-2b7bf930ae762d3124317e36f26a7567dc04e835.tar.bz2 linux-3.10-2b7bf930ae762d3124317e36f26a7567dc04e835.zip |
sh/boards/dreamcast/rtc.c: make 2 functions static
This patch makes the needlessly global aica_rtc_{get,set}timeofday()
static.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boards')
-rw-r--r-- | arch/sh/boards/dreamcast/rtc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/boards/dreamcast/rtc.c b/arch/sh/boards/dreamcast/rtc.c index b3a876a3b85..a7433685798 100644 --- a/arch/sh/boards/dreamcast/rtc.c +++ b/arch/sh/boards/dreamcast/rtc.c @@ -30,7 +30,7 @@ * * Grabs the current RTC seconds counter and adjusts it to the Unix Epoch. */ -void aica_rtc_gettimeofday(struct timespec *ts) +static void aica_rtc_gettimeofday(struct timespec *ts) { unsigned long val1, val2; @@ -54,7 +54,7 @@ void aica_rtc_gettimeofday(struct timespec *ts) * * Adjusts the given @tv to the AICA Epoch and sets the RTC seconds counter. */ -int aica_rtc_settimeofday(const time_t secs) +static int aica_rtc_settimeofday(const time_t secs) { unsigned long val1, val2; unsigned long adj = secs + TWENTY_YEARS; |