mirror of
https://github.com/torvalds/linux.git
synced 2024-12-11 13:41:55 +00:00
ec8f24b7fa
Add SPDX license identifiers to all Make/Kconfig files which: - Have no license information of any form These files fall under the project license, GPL v2 only. The resulting SPDX license identifier is: GPL-2.0-only Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9 lines
364 B
Makefile
9 lines
364 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
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
|