Skip to content

Commit

Permalink
m68k: merge the mmu and non-mmu versions of mmu.h
Browse files Browse the repository at this point in the history
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
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 20 deletions.
14 changes: 11 additions & 3 deletions arch/m68k/include/asm/mmu.h
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
7 changes: 0 additions & 7 deletions arch/m68k/include/asm/mmu_mm.h

This file was deleted.

10 changes: 0 additions & 10 deletions arch/m68k/include/asm/mmu_no.h

This file was deleted.

0 comments on commit 54cae79

Please sign in to comment.