mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-11 08:18:47 +00:00
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu
Pull m68knommu arch fixes from Greg Ungerer: "This contains a couple of fixes, both affecting compilation of non-mmu m68k targets." * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu: m68k: fix conditional use of init_pointer_table m68knommu: add KMAP definitions for non-MMU definitions
This commit is contained in:
commit
b814469ad5
@ -64,6 +64,8 @@ extern unsigned int kobjsize(const void *objp);
|
|||||||
*/
|
*/
|
||||||
#define VMALLOC_START 0
|
#define VMALLOC_START 0
|
||||||
#define VMALLOC_END 0xffffffff
|
#define VMALLOC_END 0xffffffff
|
||||||
|
#define KMAP_START 0
|
||||||
|
#define KMAP_END 0xffffffff
|
||||||
|
|
||||||
#include <asm-generic/pgtable.h>
|
#include <asm-generic/pgtable.h>
|
||||||
|
|
||||||
|
@ -39,6 +39,11 @@
|
|||||||
void *empty_zero_page;
|
void *empty_zero_page;
|
||||||
EXPORT_SYMBOL(empty_zero_page);
|
EXPORT_SYMBOL(empty_zero_page);
|
||||||
|
|
||||||
|
#if !defined(CONFIG_SUN3) && !defined(CONFIG_COLDFIRE)
|
||||||
|
extern void init_pointer_table(unsigned long ptable);
|
||||||
|
extern pmd_t *zero_pgtable;
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_MMU
|
#ifdef CONFIG_MMU
|
||||||
|
|
||||||
pg_data_t pg_data_map[MAX_NUMNODES];
|
pg_data_t pg_data_map[MAX_NUMNODES];
|
||||||
@ -69,9 +74,6 @@ void __init m68k_setup_node(int node)
|
|||||||
node_set_online(node);
|
node_set_online(node);
|
||||||
}
|
}
|
||||||
|
|
||||||
extern void init_pointer_table(unsigned long ptable);
|
|
||||||
extern pmd_t *zero_pgtable;
|
|
||||||
|
|
||||||
#else /* CONFIG_MMU */
|
#else /* CONFIG_MMU */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user