7bf5f0562b
Replace 4xx usage with 44x, and replace 4xx_SOC with 44x. Also, as pointed out by Christophe, if 44x || BOOKE can be simplified to just test BOOKE, because 44x always selects BOOKE. Retain the CONFIG_4xx symbol, as there are drivers that use it to mean 4xx || 44x, those will need updating before CONFIG_4xx can be removed. Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://msgid.link/20240628121201.130802-6-mpe@ellerman.id.au
15 lines
374 B
Makefile
15 lines
374 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-y += ptdump.o
|
|
|
|
obj-$(CONFIG_44x) += shared.o
|
|
obj-$(CONFIG_PPC_8xx) += 8xx.o
|
|
obj-$(CONFIG_PPC_E500) += shared.o
|
|
obj-$(CONFIG_PPC_BOOK3S_32) += shared.o
|
|
obj-$(CONFIG_PPC_BOOK3S_64) += book3s64.o
|
|
|
|
ifdef CONFIG_PTDUMP_DEBUGFS
|
|
obj-$(CONFIG_PPC_BOOK3S_32) += bats.o segment_regs.o
|
|
obj-$(CONFIG_PPC_64S_HASH_MMU) += hashpagetable.o
|
|
endif
|