]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
powerpc/32s: Rename head_32.S to head_book3s_32.S
authorChristophe Leroy <christophe.leroy@csgroup.eu>
Tue, 6 Oct 2020 09:05:26 +0000 (09:05 +0000)
committerMichael Ellerman <mpe@ellerman.id.au>
Thu, 8 Oct 2020 10:17:14 +0000 (21:17 +1100)
Unlike PPC64 which had a single head_64.S, PPC32 are multiple ones.
There is the head_32.S, selected by default based on the value of BITS
and overridden based on some CONFIG_ values. This leads to thinking
that it may be selected by different types of PPC32 platform but
indeed it ends up being selected by book3s/32 only.

Make that explicit by:
- Not doing any default selection based on BITS.
- Renaming head_32.S to head_book3s_32.S.
- Get head_book3s_32.S selected only by CONFIG_PPC_BOOK3S_32.

Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
[mpe: Fix head_$(BITS).o reference in arch/powerpc/Makefile]
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/319d379f696412681c66a987cc75e6abf8f958d2.1601975100.git.christophe.leroy@csgroup.eu
arch/powerpc/Makefile
arch/powerpc/kernel/Makefile
arch/powerpc/kernel/head_book3s_32.S [moved from arch/powerpc/kernel/head_32.S with 99% similarity]

index 3e8da9cf2eb9d27aa00933f30330d49c27af28b1..c4f9dbd125770413c7c5d744e96dedfbd7a47d2f 100644 (file)
@@ -264,7 +264,8 @@ KBUILD_CFLAGS += $(cpu-as-y)
 KBUILD_AFLAGS += $(aflags-y)
 KBUILD_CFLAGS += $(cflags-y)
 
-head-y                         := arch/powerpc/kernel/head_$(BITS).o
+head-$(CONFIG_PPC64)           := arch/powerpc/kernel/head_64.o
+head-$(CONFIG_PPC_BOOK3S_32)   := arch/powerpc/kernel/head_book3s_32.o
 head-$(CONFIG_PPC_8xx)         := arch/powerpc/kernel/head_8xx.o
 head-$(CONFIG_40x)             := arch/powerpc/kernel/head_40x.o
 head-$(CONFIG_44x)             := arch/powerpc/kernel/head_44x.o
index a5550c2b24c4acfc78f7f6d0df1c315aedaaa264..bf0bf1b900d21266cfd7eab9b6c7f797342239fb 100644 (file)
@@ -95,7 +95,8 @@ obj-$(CONFIG_PPC_FSL_BOOK3E)  += cpu_setup_fsl_booke.o
 obj-$(CONFIG_PPC_DOORBELL)     += dbell.o
 obj-$(CONFIG_JUMP_LABEL)       += jump_label.o
 
-extra-y                                := head_$(BITS).o
+extra-$(CONFIG_PPC64)          := head_64.o
+extra-$(CONFIG_PPC_BOOK3S_32)  := head_book3s_32.o
 extra-$(CONFIG_40x)            := head_40x.o
 extra-$(CONFIG_44x)            := head_44x.o
 extra-$(CONFIG_FSL_BOOKE)      := head_fsl_booke.o
similarity index 99%
rename from arch/powerpc/kernel/head_32.S
rename to arch/powerpc/kernel/head_book3s_32.S
index 6dc77419147e9209bac6752ae2b2a55ff840abb0..b7b554533e0d70ca9d23146e4c4cf40356daec6e 100644 (file)
@@ -50,7 +50,7 @@
 
        __HEAD
        .stabs  "arch/powerpc/kernel/",N_SO,0,0,0f
-       .stabs  "head_32.S",N_SO,0,0,0f
+       .stabs  "head_book3s_32.S",N_SO,0,0,0f
 0:
 _ENTRY(_stext);