diff options
author | Kees Cook <[email protected]> | 2020-08-21 12:42:49 -0700 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2020-09-01 09:50:36 +0200 |
commit | b4ca91027d8226ae423ce498f03f5b348cf84e36 (patch) | |
tree | e93beab4527983e87efb545f8741ab1a2e6bb1cd | |
parent | e2179a09ab089d3423751bd2b0c884ddb3eabe84 (diff) |
arm64/mm: Remove needless section quotes
Fix a case of needless quotes in __section(), which Clang doesn't like.
Signed-off-by: Kees Cook <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
Reviewed-by: Nick Desaulniers <[email protected]>
Acked-by: Will Deacon <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
-rw-r--r-- | arch/arm64/mm/mmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/mm/mmu.c b/arch/arm64/mm/mmu.c index 75df62fea1b6..e43c805b7b8c 100644 --- a/arch/arm64/mm/mmu.c +++ b/arch/arm64/mm/mmu.c @@ -43,7 +43,7 @@ u64 idmap_t0sz = TCR_T0SZ(VA_BITS); u64 idmap_ptrs_per_pgd = PTRS_PER_PGD; -u64 __section(".mmuoff.data.write") vabits_actual; +u64 __section(.mmuoff.data.write) vabits_actual; EXPORT_SYMBOL(vabits_actual); u64 kimage_voffset __ro_after_init; |