blob: 31d86edca45dc876ff1131868ce2d87a1725b3c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#
# Memory controller code.
#
obj-y += mc.o
# MC error reporting.
obj-y += mcerr.o
obj-$(CONFIG_ARCH_TEGRA_3x_SOC) += mcerr-t3.o
obj-$(CONFIG_ARCH_TEGRA_11x_SOC) += mcerr-t11.o
obj-$(CONFIG_ARCH_TEGRA_12x_SOC) += mcerr-t12.o
obj-$(CONFIG_ARCH_TEGRA_14x_SOC) += mcerr-t14.o
ifeq ($(CONFIG_PM_SLEEP),y)
obj-$(CONFIG_ARCH_TEGRA_12x_SOC) += mc-timing-t12x.o
endif
|