]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/net/fm/Makefile
Merge branch 'master' of git://git.denx.de/u-boot-blackfin
[karo-tx-uboot.git] / drivers / net / fm / Makefile
1 #
2 # Copyright 2009-2011 Freescale Semiconductor, Inc.
3 #
4 # SPDX-License-Identifier:      GPL-2.0+
5 #
6
7 ifdef CONFIG_FMAN_ENET
8 obj-y += dtsec.o
9 obj-y += eth.o
10 obj-y += fm.o
11 obj-y += init.o
12 obj-y += tgec.o
13 obj-y += tgec_phy.o
14
15 # Soc have FMAN v3 with mEMAC
16 obj-$(CONFIG_SYS_FMAN_V3) += memac_phy.o
17 obj-$(CONFIG_SYS_FMAN_V3) += memac.o
18
19 # SoC specific SERDES support
20 obj-$(CONFIG_P1017)     += p1023.o
21 obj-$(CONFIG_P1023)     += p1023.o
22 # The P204x, P304x, and P5020 are the same
23 obj-$(CONFIG_PPC_P2041) += p5020.o
24 obj-$(CONFIG_PPC_P3041) += p5020.o
25 obj-$(CONFIG_PPC_P4080) += p4080.o
26 obj-$(CONFIG_PPC_P5020) += p5020.o
27 obj-$(CONFIG_PPC_P5040) += p5040.o
28 obj-$(CONFIG_PPC_T1040) += t1040.o
29 obj-$(CONFIG_PPC_T4240) += t4240.o
30 obj-$(CONFIG_PPC_T4160) += t4240.o
31 obj-$(CONFIG_PPC_B4420) += b4860.o
32 obj-$(CONFIG_PPC_B4860) += b4860.o
33 endif