From: Jason A. Donenfeld Date: Sat, 23 Apr 2022 19:11:41 +0000 (+0200) Subject: alpha: define get_cycles macro for arch-override X-Git-Tag: v6.1-rc5~1317^2~43 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1097710bc9660e1e588cf2186a35db3d95c4d258;p=platform%2Fkernel%2Flinux-starfive.git alpha: define get_cycles macro for arch-override Alpha defines a get_cycles() function, but it does not do the usual `#define get_cycles get_cycles` dance, making it impossible for generic code to see if an arch-specific function was defined. While the get_cycles() ifdef is not currently used, the following timekeeping patch in this series will depend on the macro existing (or not existing) when defining random_get_entropy(). Cc: Thomas Gleixner Cc: Arnd Bergmann Cc: Richard Henderson Cc: Ivan Kokshaysky Acked-by: Matt Turner Signed-off-by: Jason A. Donenfeld --- diff --git a/arch/alpha/include/asm/timex.h b/arch/alpha/include/asm/timex.h index b565cc6..f89798d 100644 --- a/arch/alpha/include/asm/timex.h +++ b/arch/alpha/include/asm/timex.h @@ -28,5 +28,6 @@ static inline cycles_t get_cycles (void) __asm__ __volatile__ ("rpcc %0" : "=r"(ret)); return ret; } +#define get_cycles get_cycles #endif