powerpc: move math-emu over to arch/powerpc
authorKumar Gala <galak@kernel.crashing.org>
Tue, 28 Mar 2006 05:43:27 +0000 (23:43 -0600)
committerKumar Gala <galak@kernel.crashing.org>
Tue, 28 Mar 2006 05:43:27 +0000 (23:43 -0600)
commit5cd272085bbc905532869f3e1fd18a7100496b56
tree2c29f8a713e90fe55864502ed962c656014bca71
parentff2e6d7e27cf1f757ab0d97e1a9e46de47152a0e
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>
108 files changed:
arch/powerpc/Makefile
arch/powerpc/math-emu/Makefile [new file with mode: 0644]
arch/powerpc/math-emu/double.h [new file with mode: 0644]
arch/powerpc/math-emu/fabs.c [new file with mode: 0644]
arch/powerpc/math-emu/fadd.c [new file with mode: 0644]
arch/powerpc/math-emu/fadds.c [new file with mode: 0644]
arch/powerpc/math-emu/fcmpo.c [new file with mode: 0644]
arch/powerpc/math-emu/fcmpu.c [new file with mode: 0644]
arch/powerpc/math-emu/fctiw.c [new file with mode: 0644]
arch/powerpc/math-emu/fctiwz.c [new file with mode: 0644]
arch/powerpc/math-emu/fdiv.c [new file with mode: 0644]
arch/powerpc/math-emu/fdivs.c [new file with mode: 0644]
arch/powerpc/math-emu/fmadd.c [new file with mode: 0644]
arch/powerpc/math-emu/fmadds.c [new file with mode: 0644]
arch/powerpc/math-emu/fmr.c [new file with mode: 0644]
arch/powerpc/math-emu/fmsub.c [new file with mode: 0644]
arch/powerpc/math-emu/fmsubs.c [new file with mode: 0644]
arch/powerpc/math-emu/fmul.c [new file with mode: 0644]
arch/powerpc/math-emu/fmuls.c [new file with mode: 0644]
arch/powerpc/math-emu/fnabs.c [new file with mode: 0644]
arch/powerpc/math-emu/fneg.c [new file with mode: 0644]
arch/powerpc/math-emu/fnmadd.c [new file with mode: 0644]
arch/powerpc/math-emu/fnmadds.c [new file with mode: 0644]
arch/powerpc/math-emu/fnmsub.c [new file with mode: 0644]
arch/powerpc/math-emu/fnmsubs.c [new file with mode: 0644]
arch/powerpc/math-emu/fres.c [new file with mode: 0644]
arch/powerpc/math-emu/frsp.c [new file with mode: 0644]
arch/powerpc/math-emu/frsqrte.c [new file with mode: 0644]
arch/powerpc/math-emu/fsel.c [new file with mode: 0644]
arch/powerpc/math-emu/fsqrt.c [new file with mode: 0644]
arch/powerpc/math-emu/fsqrts.c [new file with mode: 0644]
arch/powerpc/math-emu/fsub.c [new file with mode: 0644]
arch/powerpc/math-emu/fsubs.c [new file with mode: 0644]
arch/powerpc/math-emu/lfd.c [new file with mode: 0644]
arch/powerpc/math-emu/lfs.c [new file with mode: 0644]
arch/powerpc/math-emu/math.c [new file with mode: 0644]
arch/powerpc/math-emu/mcrfs.c [new file with mode: 0644]
arch/powerpc/math-emu/mffs.c [new file with mode: 0644]
arch/powerpc/math-emu/mtfsb0.c [new file with mode: 0644]
arch/powerpc/math-emu/mtfsb1.c [new file with mode: 0644]
arch/powerpc/math-emu/mtfsf.c [new file with mode: 0644]
arch/powerpc/math-emu/mtfsfi.c [new file with mode: 0644]
arch/powerpc/math-emu/op-1.h [new file with mode: 0644]
arch/powerpc/math-emu/op-2.h [new file with mode: 0644]
arch/powerpc/math-emu/op-4.h [new file with mode: 0644]
arch/powerpc/math-emu/op-common.h [new file with mode: 0644]
arch/powerpc/math-emu/sfp-machine.h [new file with mode: 0644]
arch/powerpc/math-emu/single.h [new file with mode: 0644]
arch/powerpc/math-emu/soft-fp.h [new file with mode: 0644]
arch/powerpc/math-emu/stfd.c [new file with mode: 0644]
arch/powerpc/math-emu/stfiwx.c [new file with mode: 0644]
arch/powerpc/math-emu/stfs.c [new file with mode: 0644]
arch/powerpc/math-emu/types.c [new file with mode: 0644]
arch/powerpc/math-emu/udivmodti4.c [new file with mode: 0644]
arch/ppc/Makefile
arch/ppc/math-emu/Makefile [deleted file]
arch/ppc/math-emu/double.h [deleted file]
arch/ppc/math-emu/fabs.c [deleted file]
arch/ppc/math-emu/fadd.c [deleted file]
arch/ppc/math-emu/fadds.c [deleted file]
arch/ppc/math-emu/fcmpo.c [deleted file]
arch/ppc/math-emu/fcmpu.c [deleted file]
arch/ppc/math-emu/fctiw.c [deleted file]
arch/ppc/math-emu/fctiwz.c [deleted file]
arch/ppc/math-emu/fdiv.c [deleted file]
arch/ppc/math-emu/fdivs.c [deleted file]
arch/ppc/math-emu/fmadd.c [deleted file]
arch/ppc/math-emu/fmadds.c [deleted file]
arch/ppc/math-emu/fmr.c [deleted file]
arch/ppc/math-emu/fmsub.c [deleted file]
arch/ppc/math-emu/fmsubs.c [deleted file]
arch/ppc/math-emu/fmul.c [deleted file]
arch/ppc/math-emu/fmuls.c [deleted file]
arch/ppc/math-emu/fnabs.c [deleted file]
arch/ppc/math-emu/fneg.c [deleted file]
arch/ppc/math-emu/fnmadd.c [deleted file]
arch/ppc/math-emu/fnmadds.c [deleted file]
arch/ppc/math-emu/fnmsub.c [deleted file]
arch/ppc/math-emu/fnmsubs.c [deleted file]
arch/ppc/math-emu/fres.c [deleted file]
arch/ppc/math-emu/frsp.c [deleted file]
arch/ppc/math-emu/frsqrte.c [deleted file]
arch/ppc/math-emu/fsel.c [deleted file]
arch/ppc/math-emu/fsqrt.c [deleted file]
arch/ppc/math-emu/fsqrts.c [deleted file]
arch/ppc/math-emu/fsub.c [deleted file]
arch/ppc/math-emu/fsubs.c [deleted file]
arch/ppc/math-emu/lfd.c [deleted file]
arch/ppc/math-emu/lfs.c [deleted file]
arch/ppc/math-emu/math.c [deleted file]
arch/ppc/math-emu/mcrfs.c [deleted file]
arch/ppc/math-emu/mffs.c [deleted file]
arch/ppc/math-emu/mtfsb0.c [deleted file]
arch/ppc/math-emu/mtfsb1.c [deleted file]
arch/ppc/math-emu/mtfsf.c [deleted file]
arch/ppc/math-emu/mtfsfi.c [deleted file]
arch/ppc/math-emu/op-1.h [deleted file]
arch/ppc/math-emu/op-2.h [deleted file]
arch/ppc/math-emu/op-4.h [deleted file]
arch/ppc/math-emu/op-common.h [deleted file]
arch/ppc/math-emu/sfp-machine.h [deleted file]
arch/ppc/math-emu/single.h [deleted file]
arch/ppc/math-emu/soft-fp.h [deleted file]
arch/ppc/math-emu/stfd.c [deleted file]
arch/ppc/math-emu/stfiwx.c [deleted file]
arch/ppc/math-emu/stfs.c [deleted file]
arch/ppc/math-emu/types.c [deleted file]
arch/ppc/math-emu/udivmodti4.c [deleted file]