mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-17 07:54:54 +08:00
49708c9e6c
Two config options exist to define powerpc MPC8xx: * CONFIG_PPC_8xx * CONFIG_8xx In addition, CONFIG_PPC_8xx also defines CONFIG_CPM1 as communication co-processor arch/powerpc/platforms/Kconfig.cputype has contained the following comment about CONFIG_8xx item for some years: "# this is temp to handle compat with arch=ppc" It looks like not many places still have that old CONFIG_8xx used, so it is likely to be a good time to get rid of it completely ? Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12 lines
289 B
Makefile
12 lines
289 B
Makefile
#
|
|
# Makefile for the Motorola 8xx FEC ethernet controller
|
|
#
|
|
|
|
obj-$(CONFIG_SERIAL_CPM) += cpm_uart.o
|
|
|
|
# Select the correct platform objects.
|
|
cpm_uart-objs-$(CONFIG_CPM2) += cpm_uart_cpm2.o
|
|
cpm_uart-objs-$(CONFIG_CPM1) += cpm_uart_cpm1.o
|
|
|
|
cpm_uart-objs := cpm_uart_core.o $(cpm_uart-objs-y)
|