mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
m68k: merge the mmu and non-mmu versions of page_offset.h
Trivial merge of the mmu and non-mmu versions of page_offset.h Signed-off-by: Greg Ungerer <gerg@uclinux.org> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
This commit is contained in:
parent
e77d15511f
commit
ac55cdfb02
3 changed files with 9 additions and 16 deletions
|
@ -1,5 +1,11 @@
|
|||
#ifdef __uClinux__
|
||||
#include "page_offset_no.h"
|
||||
/* This handles the memory map.. */
|
||||
|
||||
#ifdef CONFIG_MMU
|
||||
#ifndef CONFIG_SUN3
|
||||
#define PAGE_OFFSET_RAW 0x00000000
|
||||
#else
|
||||
#include "page_offset_mm.h"
|
||||
#define PAGE_OFFSET_RAW 0x0E000000
|
||||
#endif
|
||||
#else
|
||||
#define PAGE_OFFSET_RAW CONFIG_RAMBASE
|
||||
#endif
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
|
||||
/* This handles the memory map.. */
|
||||
#ifndef CONFIG_SUN3
|
||||
#define PAGE_OFFSET_RAW 0x00000000
|
||||
#else
|
||||
#define PAGE_OFFSET_RAW 0x0E000000
|
||||
#endif
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
|
||||
|
||||
/* This handles the memory map.. */
|
||||
#define PAGE_OFFSET_RAW CONFIG_RAMBASE
|
||||
|
Loading…
Reference in a new issue