diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2013-07-18 19:59:31 -0400 |
---|---|---|
committer | Daniel Lezcano <daniel.lezcano@linaro.org> | 2013-07-31 19:13:37 -0400 |
commit | 60faddf6eb3aba16068032bdcf35e18ace4bfb21 (patch) | |
tree | 2c93b3a5c71f9151f7d6940067beadd5e311e8ef /arch/arm64 | |
parent | d53ef114cf40a043e3cc3fa70dbcdfb268a7e4dc (diff) |
clocksource: arch_timer: Push the read/write wrappers deeper
We're going to introduce support to read and write the memory
mapped timer registers in the next patch, so push the cp15
read/write functions one level deeper. This simplifies the next
patch and makes it clearer what's going on.
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Marc Zyngier <Marc.Zyngier@arm.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Diffstat (limited to 'arch/arm64')
-rw-r--r-- | arch/arm64/include/asm/arch_timer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm64/include/asm/arch_timer.h b/arch/arm64/include/asm/arch_timer.h index dbca77168e81..7181e777c2c5 100644 --- a/arch/arm64/include/asm/arch_timer.h +++ b/arch/arm64/include/asm/arch_timer.h | |||
@@ -32,7 +32,7 @@ | |||
32 | * the code. | 32 | * the code. |
33 | */ | 33 | */ |
34 | static __always_inline | 34 | static __always_inline |
35 | void arch_timer_reg_write(int access, enum arch_timer_reg reg, u32 val) | 35 | void arch_timer_reg_write_cp15(int access, enum arch_timer_reg reg, u32 val) |
36 | { | 36 | { |
37 | if (access == ARCH_TIMER_PHYS_ACCESS) { | 37 | if (access == ARCH_TIMER_PHYS_ACCESS) { |
38 | switch (reg) { | 38 | switch (reg) { |
@@ -58,7 +58,7 @@ void arch_timer_reg_write(int access, enum arch_timer_reg reg, u32 val) | |||
58 | } | 58 | } |
59 | 59 | ||
60 | static __always_inline | 60 | static __always_inline |
61 | u32 arch_timer_reg_read(int access, enum arch_timer_reg reg) | 61 | u32 arch_timer_reg_read_cp15(int access, enum arch_timer_reg reg) |
62 | { | 62 | { |
63 | u32 val; | 63 | u32 val; |
64 | 64 | ||