[PATCH] tools headers arm64: Fix compilation failure

From: Leo Yan
Date: Thu Aug 11 2022 - 00:44:00 EST


When build perf tool on x86_64, it reports failure for finding the
header <asm/sysreg.h>:

In file included from util/arm-spe.c:37:
util/../../arch/arm64/include/asm/cputype.h:183:10: fatal error: asm/sysreg.h: No such file or directory
183 | #include <asm/sysreg.h>
| ^~~~~~~~~~~~~~
compilation terminated.

There have no sysreg.h in x86's asm folder, alternatively, this patch
includes the sysreg.h header in the same folder with cputype.h to fix
the compilation failure.

Fixes: 37402d5d061b ("tools headers arm64: Sync arm64's cputype.h with the kernel sources")
Signed-off-by: Leo Yan <leo.yan@xxxxxxxxxx>
---
tools/arch/arm64/include/asm/cputype.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/arch/arm64/include/asm/cputype.h b/tools/arch/arm64/include/asm/cputype.h
index 8aa0d276a636..cddeada0ca31 100644
--- a/tools/arch/arm64/include/asm/cputype.h
+++ b/tools/arch/arm64/include/asm/cputype.h
@@ -180,7 +180,7 @@

#ifndef __ASSEMBLY__

-#include <asm/sysreg.h>
+#include "sysreg.h"

#define read_cpuid(reg) read_sysreg_s(SYS_ ## reg)

--
2.34.1