mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-11 16:29:05 +00:00
fe45ab5529
The BPMP implementation on Tegra194 is mostly compatible with the implementation on Tegra186, so make sure the latter is available when support for Tegra194 is enabled. Suggested-by: Timo Alho <talho@nvidia.com> Reviewed-by: Timo Alho <talho@nvidia.com> Tested-by: Timo Alho <talho@nvidia.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
8 lines
324 B
Makefile
8 lines
324 B
Makefile
tegra-bpmp-y = bpmp.o
|
|
tegra-bpmp-$(CONFIG_ARCH_TEGRA_210_SOC) += bpmp-tegra210.o
|
|
tegra-bpmp-$(CONFIG_ARCH_TEGRA_186_SOC) += bpmp-tegra186.o
|
|
tegra-bpmp-$(CONFIG_ARCH_TEGRA_194_SOC) += bpmp-tegra186.o
|
|
tegra-bpmp-$(CONFIG_DEBUG_FS) += bpmp-debugfs.o
|
|
obj-$(CONFIG_TEGRA_BPMP) += tegra-bpmp.o
|
|
obj-$(CONFIG_TEGRA_IVC) += ivc.o
|