diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2007-09-05 02:59:34 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-10-11 18:46:06 -0400 |
commit | 2f56cfdd812a17623483d3dfa3370a2e6282b245 (patch) | |
tree | 624e2bfccf0b0ee02cd94343acdf5d3364cb002e /arch/mips/fw/arc/time.c | |
parent | df78b5c8faa72b3c04f82faab126de93af178348 (diff) |
[MIPS] Move ARC code into arch/mips/fw/arc
Move the ARC code to arch/mips/fw/arc from arch/mips/arc.
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/fw/arc/time.c')
-rw-r--r-- | arch/mips/fw/arc/time.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/arch/mips/fw/arc/time.c b/arch/mips/fw/arc/time.c new file mode 100644 index 000000000000..42138c837d48 --- /dev/null +++ b/arch/mips/fw/arc/time.c | |||
@@ -0,0 +1,25 @@ | |||
1 | /* | ||
2 | * This file is subject to the terms and conditions of the GNU General Public | ||
3 | * License. See the file "COPYING" in the main directory of this archive | ||
4 | * for more details. | ||
5 | * | ||
6 | * Extracting time information from ARCS prom. | ||
7 | * | ||
8 | * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com) | ||
9 | */ | ||
10 | #include <linux/init.h> | ||
11 | |||
12 | #include <asm/fw/arc/types.h> | ||
13 | #include <asm/sgialib.h> | ||
14 | |||
15 | struct linux_tinfo * __init | ||
16 | ArcGetTime(VOID) | ||
17 | { | ||
18 | return (struct linux_tinfo *) ARC_CALL0(get_tinfo); | ||
19 | } | ||
20 | |||
21 | ULONG __init | ||
22 | ArcGetRelativeTime(VOID) | ||
23 | { | ||
24 | return ARC_CALL0(get_rtime); | ||
25 | } | ||