Skip to content

Commit

Permalink
m68k: merge the mmu and non-mmu versions of page_offset.h
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Greg Ungerer committed Mar 24, 2009
1 parent e77d155 commit ac55cdf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 16 deletions.
12 changes: 9 additions & 3 deletions arch/m68k/include/asm/page_offset.h
Original file line number Diff line number Diff line change
@@ -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
8 changes: 0 additions & 8 deletions arch/m68k/include/asm/page_offset_mm.h

This file was deleted.

5 changes: 0 additions & 5 deletions arch/m68k/include/asm/page_offset_no.h

This file was deleted.

0 comments on commit ac55cdf

Please sign in to comment.