diff options
author | Mark Brown <[email protected]> | 2021-05-13 16:18:19 +0100 |
---|---|---|
committer | Catalin Marinas <[email protected]> | 2021-05-13 17:57:43 +0100 |
commit | af44068c581c028fd9897ca75a10fa310d8fc449 (patch) | |
tree | a982afa902ecb95633ac4b833d387ee47c268e8f | |
parent | 37a8024d265564eba680575df6421f19db21dfce (diff) |
arm64: tools: Add __ASM_CPUCAPS_H to the endif in cpucaps.h
Anshuman suggested this.
Suggested-by: Anshuman Khandual <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Catalin Marinas <[email protected]>
-rwxr-xr-x | arch/arm64/tools/gen-cpucaps.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/tools/gen-cpucaps.awk b/arch/arm64/tools/gen-cpucaps.awk index 18737a1ce044..00c9e72a200a 100755 --- a/arch/arm64/tools/gen-cpucaps.awk +++ b/arch/arm64/tools/gen-cpucaps.awk @@ -31,7 +31,7 @@ BEGIN { END { printf("#define ARM64_NCAPS\t\t\t\t%d\n", cap_num) print "" - print "#endif" + print "#endif /* __ASM_CPUCAPS_H */" } # Any lines not handled by previous rules are unexpected |