mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 11:32:04 +00:00
9a32299394
The bestcomm dma hardware, and some of its users like the FEC ethernet component, is used in different FreeScale parts, including non-powerpc parts like the ColdFire MCF547x & MCF548x families. Don't keep the driver hidden in arch/powerpc where it is inaccessible for other arches. .c files are moved to drivers/dma/bestcomm, while .h files are moved to include/linux/fsl/bestcomm. Makefiles, Kconfigs and #include directives are updated for the new file locations. Tested by recompiling for MPC5200 with all bestcomm users enabled. Signed-off-by: Philippe De Muyter <phdm@macqel.be> Signed-off-by: Anatolij Gustschin <agust@denx.de>
15 lines
464 B
Makefile
15 lines
464 B
Makefile
#
|
|
# Makefile for BestComm & co
|
|
#
|
|
|
|
bestcomm-core-objs := bestcomm.o sram.o
|
|
bestcomm-ata-objs := ata.o bcom_ata_task.o
|
|
bestcomm-fec-objs := fec.o bcom_fec_rx_task.o bcom_fec_tx_task.o
|
|
bestcomm-gen-bd-objs := gen_bd.o bcom_gen_bd_rx_task.o bcom_gen_bd_tx_task.o
|
|
|
|
obj-$(CONFIG_PPC_BESTCOMM) += bestcomm-core.o
|
|
obj-$(CONFIG_PPC_BESTCOMM_ATA) += bestcomm-ata.o
|
|
obj-$(CONFIG_PPC_BESTCOMM_FEC) += bestcomm-fec.o
|
|
obj-$(CONFIG_PPC_BESTCOMM_GEN_BD) += bestcomm-gen-bd.o
|
|
|