mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

While the GCC and Clang compilers already define __ASSEMBLER__ automatically when compiling assembly code, __ASSEMBLY__ is a macro that only gets defined by the Makefiles in the kernel. This can be very confusing when switching between userspace and kernelspace coding, or when dealing with uapi headers that rather should use __ASSEMBLER__ instead. So let's standardize on the __ASSEMBLER__ macro that is provided by the compilers now. This is almost a completely mechanical patch (done with a simple "sed -i" statement), with one comment tweaked manually in arch/m68k/include/asm/mac_baboon.h (which was missing underscores). Signed-off-by: Thomas Huth <thuth@redhat.com> Acked-by: Greg Ungerer <gerg@linux-m68k.org> Reviewed-by: Geert Uytterhoeven <geert@linux-m68k.org> Link: https://lore.kernel.org/20250611114056.118309-3-thuth@redhat.com Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
62 lines
1.4 KiB
C
62 lines
1.4 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _M68K_PAGE_H
|
|
#define _M68K_PAGE_H
|
|
|
|
#include <linux/const.h>
|
|
#include <asm/setup.h>
|
|
#include <asm/page_offset.h>
|
|
|
|
#include <vdso/page.h>
|
|
|
|
#define PAGE_OFFSET (PAGE_OFFSET_RAW)
|
|
|
|
#ifndef __ASSEMBLER__
|
|
|
|
/*
|
|
* These are used to make use of C type-checking..
|
|
*/
|
|
#if !defined(CONFIG_MMU) || CONFIG_PGTABLE_LEVELS == 3
|
|
typedef struct { unsigned long pmd; } pmd_t;
|
|
#define pmd_val(x) ((&x)->pmd)
|
|
#define __pmd(x) ((pmd_t) { (x) } )
|
|
#endif
|
|
|
|
typedef struct { unsigned long pte; } pte_t;
|
|
typedef struct { unsigned long pgd; } pgd_t;
|
|
typedef struct { unsigned long pgprot; } pgprot_t;
|
|
|
|
#if defined(CONFIG_SUN3)
|
|
/*
|
|
* Sun3 still uses the asm-generic/pgalloc.h code and thus needs this
|
|
* definition. It would be possible to unify Sun3 and ColdFire pgalloc and have
|
|
* all of m68k use the same type.
|
|
*/
|
|
typedef struct page *pgtable_t;
|
|
#else
|
|
typedef pte_t *pgtable_t;
|
|
#endif
|
|
|
|
#define pte_val(x) ((x).pte)
|
|
#define pgd_val(x) ((x).pgd)
|
|
#define pgprot_val(x) ((x).pgprot)
|
|
|
|
#define __pte(x) ((pte_t) { (x) } )
|
|
#define __pgd(x) ((pgd_t) { (x) } )
|
|
#define __pgprot(x) ((pgprot_t) { (x) } )
|
|
|
|
extern unsigned long _rambase;
|
|
extern unsigned long _ramstart;
|
|
extern unsigned long _ramend;
|
|
|
|
#endif /* !__ASSEMBLER__ */
|
|
|
|
#ifdef CONFIG_MMU
|
|
#include <asm/page_mm.h>
|
|
#else
|
|
#include <asm/page_no.h>
|
|
#endif
|
|
|
|
#include <asm-generic/getorder.h>
|
|
#include <asm-generic/memory_model.h>
|
|
|
|
#endif /* _M68K_PAGE_H */
|