From: Olof Johansson Date: Thu, 30 Nov 2017 01:55:18 +0000 (-0800) Subject: RISC-V: Use define for get_cycles like other architectures X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=4a41d5dbb0bbd0c3faffb2ccd8ef1a7aeb12f978;p=openwrt%2Fstaging%2Fblogic.git RISC-V: Use define for get_cycles like other architectures Signed-off-by: Olof Johansson Signed-off-by: Palmer Dabbelt --- diff --git a/arch/riscv/include/asm/timex.h b/arch/riscv/include/asm/timex.h index 3df4932d8964..2f26989cb864 100644 --- a/arch/riscv/include/asm/timex.h +++ b/arch/riscv/include/asm/timex.h @@ -18,7 +18,7 @@ typedef unsigned long cycles_t; -static inline cycles_t get_cycles(void) +static inline cycles_t get_cycles_inline(void) { cycles_t n; @@ -27,6 +27,7 @@ static inline cycles_t get_cycles(void) : "=r" (n)); return n; } +#define get_cycles get_cycles_inline #ifdef CONFIG_64BIT static inline uint64_t get_cycles64(void)