projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4bde632
)
RISC-V: Use define for get_cycles like other architectures
author
Olof Johansson
<olof@lixom.net>
Thu, 30 Nov 2017 01:55:18 +0000
(17:55 -0800)
committer
Palmer Dabbelt
<palmer@sifive.com>
Thu, 30 Nov 2017 18:12:21 +0000
(10:12 -0800)
Signed-off-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Palmer Dabbelt <palmer@sifive.com>
arch/riscv/include/asm/timex.h
patch
|
blob
|
history
diff --git
a/arch/riscv/include/asm/timex.h
b/arch/riscv/include/asm/timex.h
index 3df4932d8964faad964d0d3a3894ee0f0425c9d7..2f26989cb864bedaa1eb0bd53456ae33fcdcaabe 100644
(file)
--- 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)