Linux Audio

Check our new training course

Linux kernel drivers training

May 6-19, 2025
Register
Loading...
v6.13.7
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef M68K_PGALLOC_H
 3#define M68K_PGALLOC_H
 4
 5#include <linux/mm.h>
 6#include <linux/highmem.h>
 7#include <asm/setup.h>
 8
 9#ifdef CONFIG_MMU
10#include <asm/virtconvert.h>
11#if defined(CONFIG_COLDFIRE)
12#include <asm/mcf_pgalloc.h>
13#elif defined(CONFIG_SUN3)
14#include <asm/sun3_pgalloc.h>
15#else
16#include <asm/motorola_pgalloc.h>
17#endif
18
19extern void m68k_setup_node(int node);
20#endif
21
22#endif /* M68K_PGALLOC_H */
v3.1
 
 1#ifndef M68K_PGALLOC_H
 2#define M68K_PGALLOC_H
 3
 4#include <linux/mm.h>
 5#include <linux/highmem.h>
 6#include <asm/setup.h>
 7
 8#ifdef CONFIG_MMU
 9#include <asm/virtconvert.h>
10#ifdef CONFIG_SUN3
 
 
11#include <asm/sun3_pgalloc.h>
12#else
13#include <asm/motorola_pgalloc.h>
14#endif
15
16extern void m68k_setup_node(int node);
17#endif
18
19#endif /* M68K_PGALLOC_H */