hamradio: baycom_epp: Do not use x86-specific rdtsc()

Use get_cycles() which is provided by pretty much every arch.

The UML build works too because get_cycles() is a simple "return 0;"
because the rdtsc() is optimized away there.

Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Borislav Petkov (AMD) 2022-12-18 13:04:05 +01:00 committed by David S. Miller
parent 1d330d4fa8
commit aba5b397ca
1 changed files with 1 additions and 7 deletions

View File

@ -623,16 +623,10 @@ static int receive(struct net_device *dev, int cnt)
/* --------------------------------------------------------------------- */
#if defined(__i386__) && !defined(CONFIG_UML)
#include <asm/msr.h>
#define GETTICK(x) \
({ \
if (boot_cpu_has(X86_FEATURE_TSC)) \
x = (unsigned int)rdtsc(); \
x = (unsigned int)get_cycles(); \
})
#else /* __i386__ && !CONFIG_UML */
#define GETTICK(x)
#endif /* __i386__ && !CONFIG_UML */
static void epp_bh(struct work_struct *work)
{