Browse Source

powerpc: move math-emu over to arch/powerpc

Towards the goal of having arch/powerpc not build anything over in arch/ppc
move math-emu over.  Also, killed some references to arch/ppc/ in the
arch/powerpc Makefile which should belong in drivers/ when the particular
sub-arch's move over to arch/powerpc.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Kumar Gala 19 years ago
parent
commit
5cd272085b
55 changed files with 2 additions and 6 deletions
  1. 1 5
      arch/powerpc/Makefile
  2. 0 0
      arch/powerpc/math-emu/Makefile
  3. 0 0
      arch/powerpc/math-emu/double.h
  4. 0 0
      arch/powerpc/math-emu/fabs.c
  5. 0 0
      arch/powerpc/math-emu/fadd.c
  6. 0 0
      arch/powerpc/math-emu/fadds.c
  7. 0 0
      arch/powerpc/math-emu/fcmpo.c
  8. 0 0
      arch/powerpc/math-emu/fcmpu.c
  9. 0 0
      arch/powerpc/math-emu/fctiw.c
  10. 0 0
      arch/powerpc/math-emu/fctiwz.c
  11. 0 0
      arch/powerpc/math-emu/fdiv.c
  12. 0 0
      arch/powerpc/math-emu/fdivs.c
  13. 0 0
      arch/powerpc/math-emu/fmadd.c
  14. 0 0
      arch/powerpc/math-emu/fmadds.c
  15. 0 0
      arch/powerpc/math-emu/fmr.c
  16. 0 0
      arch/powerpc/math-emu/fmsub.c
  17. 0 0
      arch/powerpc/math-emu/fmsubs.c
  18. 0 0
      arch/powerpc/math-emu/fmul.c
  19. 0 0
      arch/powerpc/math-emu/fmuls.c
  20. 0 0
      arch/powerpc/math-emu/fnabs.c
  21. 0 0
      arch/powerpc/math-emu/fneg.c
  22. 0 0
      arch/powerpc/math-emu/fnmadd.c
  23. 0 0
      arch/powerpc/math-emu/fnmadds.c
  24. 0 0
      arch/powerpc/math-emu/fnmsub.c
  25. 0 0
      arch/powerpc/math-emu/fnmsubs.c
  26. 0 0
      arch/powerpc/math-emu/fres.c
  27. 0 0
      arch/powerpc/math-emu/frsp.c
  28. 0 0
      arch/powerpc/math-emu/frsqrte.c
  29. 0 0
      arch/powerpc/math-emu/fsel.c
  30. 0 0
      arch/powerpc/math-emu/fsqrt.c
  31. 0 0
      arch/powerpc/math-emu/fsqrts.c
  32. 0 0
      arch/powerpc/math-emu/fsub.c
  33. 0 0
      arch/powerpc/math-emu/fsubs.c
  34. 0 0
      arch/powerpc/math-emu/lfd.c
  35. 0 0
      arch/powerpc/math-emu/lfs.c
  36. 0 0
      arch/powerpc/math-emu/math.c
  37. 0 0
      arch/powerpc/math-emu/mcrfs.c
  38. 0 0
      arch/powerpc/math-emu/mffs.c
  39. 0 0
      arch/powerpc/math-emu/mtfsb0.c
  40. 0 0
      arch/powerpc/math-emu/mtfsb1.c
  41. 0 0
      arch/powerpc/math-emu/mtfsf.c
  42. 0 0
      arch/powerpc/math-emu/mtfsfi.c
  43. 0 0
      arch/powerpc/math-emu/op-1.h
  44. 0 0
      arch/powerpc/math-emu/op-2.h
  45. 0 0
      arch/powerpc/math-emu/op-4.h
  46. 0 0
      arch/powerpc/math-emu/op-common.h
  47. 0 0
      arch/powerpc/math-emu/sfp-machine.h
  48. 0 0
      arch/powerpc/math-emu/single.h
  49. 0 0
      arch/powerpc/math-emu/soft-fp.h
  50. 0 0
      arch/powerpc/math-emu/stfd.c
  51. 0 0
      arch/powerpc/math-emu/stfiwx.c
  52. 0 0
      arch/powerpc/math-emu/stfs.c
  53. 0 0
      arch/powerpc/math-emu/types.c
  54. 0 0
      arch/powerpc/math-emu/udivmodti4.c
  55. 1 1
      arch/ppc/Makefile

+ 1 - 5
arch/powerpc/Makefile

@@ -129,12 +129,8 @@ core-y				+= arch/powerpc/kernel/ \
 				   arch/powerpc/lib/ \
 				   arch/powerpc/sysdev/ \
 				   arch/powerpc/platforms/
-core-$(CONFIG_MATH_EMULATION)	+= arch/ppc/math-emu/
+core-$(CONFIG_MATH_EMULATION)	+= arch/powerpc/math-emu/
 core-$(CONFIG_XMON)		+= arch/powerpc/xmon/
-core-$(CONFIG_APUS)		+= arch/ppc/amiga/
-drivers-$(CONFIG_8xx)		+= arch/ppc/8xx_io/
-drivers-$(CONFIG_4xx)		+= arch/ppc/4xx_io/
-drivers-$(CONFIG_CPM2)		+= arch/ppc/8260_io/
 
 drivers-$(CONFIG_OPROFILE)	+= arch/powerpc/oprofile/
 

+ 0 - 0
arch/ppc/math-emu/Makefile → arch/powerpc/math-emu/Makefile


+ 0 - 0
arch/ppc/math-emu/double.h → arch/powerpc/math-emu/double.h


+ 0 - 0
arch/ppc/math-emu/fabs.c → arch/powerpc/math-emu/fabs.c


+ 0 - 0
arch/ppc/math-emu/fadd.c → arch/powerpc/math-emu/fadd.c


+ 0 - 0
arch/ppc/math-emu/fadds.c → arch/powerpc/math-emu/fadds.c


+ 0 - 0
arch/ppc/math-emu/fcmpo.c → arch/powerpc/math-emu/fcmpo.c


+ 0 - 0
arch/ppc/math-emu/fcmpu.c → arch/powerpc/math-emu/fcmpu.c


+ 0 - 0
arch/ppc/math-emu/fctiw.c → arch/powerpc/math-emu/fctiw.c


+ 0 - 0
arch/ppc/math-emu/fctiwz.c → arch/powerpc/math-emu/fctiwz.c


+ 0 - 0
arch/ppc/math-emu/fdiv.c → arch/powerpc/math-emu/fdiv.c


+ 0 - 0
arch/ppc/math-emu/fdivs.c → arch/powerpc/math-emu/fdivs.c


+ 0 - 0
arch/ppc/math-emu/fmadd.c → arch/powerpc/math-emu/fmadd.c


+ 0 - 0
arch/ppc/math-emu/fmadds.c → arch/powerpc/math-emu/fmadds.c


+ 0 - 0
arch/ppc/math-emu/fmr.c → arch/powerpc/math-emu/fmr.c


+ 0 - 0
arch/ppc/math-emu/fmsub.c → arch/powerpc/math-emu/fmsub.c


+ 0 - 0
arch/ppc/math-emu/fmsubs.c → arch/powerpc/math-emu/fmsubs.c


+ 0 - 0
arch/ppc/math-emu/fmul.c → arch/powerpc/math-emu/fmul.c


+ 0 - 0
arch/ppc/math-emu/fmuls.c → arch/powerpc/math-emu/fmuls.c


+ 0 - 0
arch/ppc/math-emu/fnabs.c → arch/powerpc/math-emu/fnabs.c


+ 0 - 0
arch/ppc/math-emu/fneg.c → arch/powerpc/math-emu/fneg.c


+ 0 - 0
arch/ppc/math-emu/fnmadd.c → arch/powerpc/math-emu/fnmadd.c


+ 0 - 0
arch/ppc/math-emu/fnmadds.c → arch/powerpc/math-emu/fnmadds.c


+ 0 - 0
arch/ppc/math-emu/fnmsub.c → arch/powerpc/math-emu/fnmsub.c


+ 0 - 0
arch/ppc/math-emu/fnmsubs.c → arch/powerpc/math-emu/fnmsubs.c


+ 0 - 0
arch/ppc/math-emu/fres.c → arch/powerpc/math-emu/fres.c


+ 0 - 0
arch/ppc/math-emu/frsp.c → arch/powerpc/math-emu/frsp.c


+ 0 - 0
arch/ppc/math-emu/frsqrte.c → arch/powerpc/math-emu/frsqrte.c


+ 0 - 0
arch/ppc/math-emu/fsel.c → arch/powerpc/math-emu/fsel.c


+ 0 - 0
arch/ppc/math-emu/fsqrt.c → arch/powerpc/math-emu/fsqrt.c


+ 0 - 0
arch/ppc/math-emu/fsqrts.c → arch/powerpc/math-emu/fsqrts.c


+ 0 - 0
arch/ppc/math-emu/fsub.c → arch/powerpc/math-emu/fsub.c


+ 0 - 0
arch/ppc/math-emu/fsubs.c → arch/powerpc/math-emu/fsubs.c


+ 0 - 0
arch/ppc/math-emu/lfd.c → arch/powerpc/math-emu/lfd.c


+ 0 - 0
arch/ppc/math-emu/lfs.c → arch/powerpc/math-emu/lfs.c


+ 0 - 0
arch/ppc/math-emu/math.c → arch/powerpc/math-emu/math.c


+ 0 - 0
arch/ppc/math-emu/mcrfs.c → arch/powerpc/math-emu/mcrfs.c


+ 0 - 0
arch/ppc/math-emu/mffs.c → arch/powerpc/math-emu/mffs.c


+ 0 - 0
arch/ppc/math-emu/mtfsb0.c → arch/powerpc/math-emu/mtfsb0.c


+ 0 - 0
arch/ppc/math-emu/mtfsb1.c → arch/powerpc/math-emu/mtfsb1.c


+ 0 - 0
arch/ppc/math-emu/mtfsf.c → arch/powerpc/math-emu/mtfsf.c


+ 0 - 0
arch/ppc/math-emu/mtfsfi.c → arch/powerpc/math-emu/mtfsfi.c


+ 0 - 0
arch/ppc/math-emu/op-1.h → arch/powerpc/math-emu/op-1.h


+ 0 - 0
arch/ppc/math-emu/op-2.h → arch/powerpc/math-emu/op-2.h


+ 0 - 0
arch/ppc/math-emu/op-4.h → arch/powerpc/math-emu/op-4.h


+ 0 - 0
arch/ppc/math-emu/op-common.h → arch/powerpc/math-emu/op-common.h


+ 0 - 0
arch/ppc/math-emu/sfp-machine.h → arch/powerpc/math-emu/sfp-machine.h


+ 0 - 0
arch/ppc/math-emu/single.h → arch/powerpc/math-emu/single.h


+ 0 - 0
arch/ppc/math-emu/soft-fp.h → arch/powerpc/math-emu/soft-fp.h


+ 0 - 0
arch/ppc/math-emu/stfd.c → arch/powerpc/math-emu/stfd.c


+ 0 - 0
arch/ppc/math-emu/stfiwx.c → arch/powerpc/math-emu/stfiwx.c


+ 0 - 0
arch/ppc/math-emu/stfs.c → arch/powerpc/math-emu/stfs.c


+ 0 - 0
arch/ppc/math-emu/types.c → arch/powerpc/math-emu/types.c


+ 0 - 0
arch/ppc/math-emu/udivmodti4.c → arch/powerpc/math-emu/udivmodti4.c


+ 1 - 1
arch/ppc/Makefile

@@ -69,7 +69,7 @@ core-y				+= arch/ppc/kernel/ arch/powerpc/kernel/ \
 core-$(CONFIG_4xx)		+= arch/ppc/platforms/4xx/
 core-$(CONFIG_83xx)		+= arch/ppc/platforms/83xx/
 core-$(CONFIG_85xx)		+= arch/ppc/platforms/85xx/
-core-$(CONFIG_MATH_EMULATION)	+= arch/ppc/math-emu/
+core-$(CONFIG_MATH_EMULATION)	+= arch/powerpc/math-emu/
 core-$(CONFIG_XMON)		+= arch/ppc/xmon/
 core-$(CONFIG_APUS)		+= arch/ppc/amiga/
 drivers-$(CONFIG_8xx)		+= arch/ppc/8xx_io/