-
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 mmu fpu.h for non-mmu builds as well
None of the currently support m68knommu targets have an FPU. Use the mmu version of fpu.h for all m68k. 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
375d1c7
commit 34055b8
Showing
3 changed files
with
19 additions
and
45 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,21 @@ | ||
#ifdef __uClinux__ | ||
#include "fpu_no.h" | ||
#ifndef __M68K_FPU_H | ||
#define __M68K_FPU_H | ||
|
||
|
||
/* | ||
* MAX floating point unit state size (FSAVE/FRESTORE) | ||
*/ | ||
|
||
#if defined(CONFIG_M68020) || defined(CONFIG_M68030) | ||
#define FPSTATESIZE (216) | ||
#elif defined(CONFIG_M68040) | ||
#define FPSTATESIZE (96) | ||
#elif defined(CONFIG_M68KFPU_EMU) | ||
#define FPSTATESIZE (28) | ||
#elif defined(CONFIG_M68060) | ||
#define FPSTATESIZE (12) | ||
#else | ||
#include "fpu_mm.h" | ||
#define FPSTATESIZE (0) | ||
#endif | ||
|
||
#endif /* __M68K_FPU_H */ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.