diff options
author | John Stultz <johnstul@us.ibm.com> | 2010-01-15 09:34:28 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-01-15 09:34:28 (GMT) |
commit | 0299b1371d8f1b074c8284a19beb9094ada9405f (patch) | |
tree | 8a10f1e309640013a802c622f06702ca108f87d7 /arch/sparc/Kconfig | |
parent | 093171465235a8482fbf08a9a2e365247e1f7dd5 (diff) | |
download | linux-0299b1371d8f1b074c8284a19beb9094ada9405f.tar.xz |
sparc: convert to arch_gettimeoffset()
This patch converts sparc (specifically sparc32) to use GENERIC_TIME via
the arch_getoffset() infrastructure, reducing the amount of arch
specific code we need to maintain.
The sparc architecture is one of the last 3 arches that need to be
converted.
This patch applies on top of Linus' current -git tree
I've taken my best swing at converting this, but I'm not 100% confident
I got it right. My cross-compiler is now out of date (gcc4.2) so I
wasn't able to check if it compiled. Any assistance from arch
maintainers or testers to get this merged would be great.
Signed-off-by: John Stultz <johnstul@us.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/Kconfig')
-rw-r--r-- | arch/sparc/Kconfig | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/sparc/Kconfig b/arch/sparc/Kconfig index 108197a..4097f6a 100644 --- a/arch/sparc/Kconfig +++ b/arch/sparc/Kconfig @@ -64,8 +64,11 @@ config BITS default 64 if SPARC64 config GENERIC_TIME + def_bool y + +config ARCH_USES_GETTIMEOFFSET bool - default y if SPARC64 + default y if SPARC32 config GENERIC_CMOS_UPDATE bool |