-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
m68k: merge the mmu and non-mmu versions of mmu.h
Trivial merge of the contents of mmu and non-mmu versions of mmu.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
bf7058f
commit 54cae79
Showing
3 changed files
with
11 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
#ifdef __uClinux__ | ||
#include "mmu_no.h" | ||
#ifndef __MMU_H | ||
#define __MMU_H | ||
|
||
#ifdef CONFIG_MMU | ||
/* Default "unsigned long" context */ | ||
typedef unsigned long mm_context_t; | ||
#else | ||
#include "mmu_mm.h" | ||
typedef struct { | ||
unsigned long end_brk; | ||
} mm_context_t; | ||
#endif | ||
|
||
#endif |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.