diff options
author | Christophe Leroy <christophe.leroy@csgroup.eu> | 2020-09-29 09:48:39 +0300 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2020-10-08 13:17:14 +0300 |
commit | 6601ec1c2ba929430f5585ce7f9d9960b0e0a01d (patch) | |
tree | da725baba70217e060fdbc0edff38c4391c40f13 /arch/powerpc/include/asm/time.h | |
parent | a4c5a355422920bcbfe3fd1f01aead2d3a2a820c (diff) | |
download | linux-6601ec1c2ba929430f5585ce7f9d9960b0e0a01d.tar.xz |
powerpc: Remove get_tb_or_rtc()
601 is gone, get_tb_or_rtc() is equivalent to get_tb().
Replace the former by the later.
Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/3e8a13ee83418630c753c30cb722ae682d5b2d39.1601362098.git.christophe.leroy@csgroup.eu
Diffstat (limited to 'arch/powerpc/include/asm/time.h')
-rw-r--r-- | arch/powerpc/include/asm/time.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/powerpc/include/asm/time.h b/arch/powerpc/include/asm/time.h index caf68a4bc19e..410ed72eef1c 100644 --- a/arch/powerpc/include/asm/time.h +++ b/arch/powerpc/include/asm/time.h @@ -85,11 +85,6 @@ static inline u64 get_tb(void) } #endif /* !CONFIG_PPC64 */ -static inline u64 get_tb_or_rtc(void) -{ - return get_tb(); -} - static inline void set_tb(unsigned int upper, unsigned int lower) { mtspr(SPRN_TBWL, 0); |