-
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: use the mmu version of cache.h for m68knommu as well
The non-mmu version of cache.h is almost the same as the mmu version. Merge them. 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
de9f4fc
commit b0ffbf2
Showing
3 changed files
with
10 additions
and
27 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,11 @@ | ||
#ifdef __uClinux__ | ||
#include "cache_no.h" | ||
#else | ||
#include "cache_mm.h" | ||
/* | ||
* include/asm-m68k/cache.h | ||
*/ | ||
#ifndef __ARCH_M68K_CACHE_H | ||
#define __ARCH_M68K_CACHE_H | ||
|
||
/* bytes per L1 cache line */ | ||
#define L1_CACHE_SHIFT 4 | ||
#define L1_CACHE_BYTES (1<< L1_CACHE_SHIFT) | ||
|
||
#endif |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.