Skip to content

Commit

Permalink
m68k: use mmu fpu.h for non-mmu builds as well
Browse files Browse the repository at this point in the history
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
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 45 deletions.
22 changes: 19 additions & 3 deletions arch/m68k/include/asm/fpu.h
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 */
21 changes: 0 additions & 21 deletions arch/m68k/include/asm/fpu_mm.h

This file was deleted.

21 changes: 0 additions & 21 deletions arch/m68k/include/asm/fpu_no.h

This file was deleted.

0 comments on commit 34055b8

Please sign in to comment.