The entire code in ldstfp.o is enclosed into #ifdef CONFIG_PPC_FPU,
so there is no point in building it when this config is not selected.
Fixes: cd64d1697cf0 ("powerpc: mtmsrd not defined")
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
 obj-y                  += checksum_$(BITS).o checksum_wrappers.o \
                           string_$(BITS).o
 
-obj-y                  += sstep.o ldstfp.o
+obj-y                  += sstep.o
+obj-$(CONFIG_PPC_FPU)  += ldstfp.o
 obj64-y                        += quad.o
 
 obj-$(CONFIG_PPC_LIB_RHEAP) += rheap.o
 
 #include <asm/asm-compat.h>
 #include <linux/errno.h>
 
-#ifdef CONFIG_PPC_FPU
-
 #define STKFRM (PPC_MIN_STKFRM + 16)
 
 /* Get the contents of frN into *p; N is in r3 and p is in r4. */
        MTMSRD(r6)
        isync
        blr
-
-#endif /* CONFIG_PPC_FPU */