diff options
| author | Linus Torvalds <[email protected]> | 2025-06-12 15:17:56 +0000 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2025-06-12 15:17:56 +0000 |
| commit | 3d853391c441965d30cc94d00d59e8bb2dd0668c (patch) | |
| tree | 1502b1a37f2faf70a9b50b4c882aebe1e4706a9a /arch/arc/include/asm/pgtable-levels.h | |
| parent | Merge tag 'bpf-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf (diff) | |
| parent | ARC: Replace __ASSEMBLY__ with __ASSEMBLER__ in the non-uapi headers (diff) | |
| download | kernel-3d853391c441965d30cc94d00d59e8bb2dd0668c.tar.gz kernel-3d853391c441965d30cc94d00d59e8bb2dd0668c.zip | |
Merge tag 'arc-6.16-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc
Pull ARC fixes from Vineet Gupta:
- arch_atomic64_cmpxchg relaxed variant [Jason]
- use of inbuilt swap in stack unwinder [Yu-Chun Lin]
- use of __ASSEMBLER__ in kernel headers [Thomas Huth]
* tag 'arc-6.16-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc:
ARC: Replace __ASSEMBLY__ with __ASSEMBLER__ in the non-uapi headers
ARC: Replace __ASSEMBLY__ with __ASSEMBLER__ in uapi headers
ARC: unwind: Use built-in sort swap to reduce code size and improve performance
ARC: atomics: Implement arch_atomic64_cmpxchg using _relaxed
Diffstat (limited to 'arch/arc/include/asm/pgtable-levels.h')
| -rw-r--r-- | arch/arc/include/asm/pgtable-levels.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arc/include/asm/pgtable-levels.h b/arch/arc/include/asm/pgtable-levels.h index d1ce4b0f1071..c8f9273372c0 100644 --- a/arch/arc/include/asm/pgtable-levels.h +++ b/arch/arc/include/asm/pgtable-levels.h @@ -85,7 +85,7 @@ #define PTRS_PER_PTE BIT(PMD_SHIFT - PAGE_SHIFT) -#ifndef __ASSEMBLY__ +#ifndef __ASSEMBLER__ #if CONFIG_PGTABLE_LEVELS > 3 #include <asm-generic/pgtable-nop4d.h> @@ -181,6 +181,6 @@ #define pmd_leaf(x) (pmd_val(x) & _PAGE_HW_SZ) #endif -#endif /* !__ASSEMBLY__ */ +#endif /* !__ASSEMBLER__ */ #endif |
