diff options
author | Martin Roth <gaumless@gmail.com> | 2023-08-04 12:07:51 -0600 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2023-08-06 19:27:36 +0000 |
commit | 8324fe92111844d1afe2a87d6d38302520793909 (patch) | |
tree | 5d11ec55b8a21944b49321c10a2ba556213cff0c /src/drivers/soundwire | |
parent | f6ca89c2241103c326641f21396f60bb079aa6a4 (diff) |
drivers: Add SPDX license headers to Makefiles
To help identify the licenses of the various files contained in the
coreboot source, we've added SPDX headers to the top of all of the
.c and .h files. This extends that practice to Makefiles.
Any file in the coreboot project without a specific license is bound
to the license of the overall coreboot project, GPL Version 2.
This patch adds the GPL V2 license identifier to the top of all
makefiles in the drivers directory that don't already have an SPDX
license line at the top.
Signed-off-by: Martin Roth <gaumless@gmail.com>
Change-Id: I8442bc18ce228eca88a084660be84bcd1c5de928
Reviewed-on: https://review.coreboot.org/c/coreboot/+/68980
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Reviewed-by: Tim Crawford <tcrawford@system76.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'src/drivers/soundwire')
-rw-r--r-- | src/drivers/soundwire/alc1308/Makefile.inc | 2 | ||||
-rw-r--r-- | src/drivers/soundwire/alc5682/Makefile.inc | 2 | ||||
-rw-r--r-- | src/drivers/soundwire/alc711/Makefile.inc | 2 | ||||
-rw-r--r-- | src/drivers/soundwire/cs42l42/Makefile.inc | 2 | ||||
-rw-r--r-- | src/drivers/soundwire/max98363/Makefile.inc | 2 | ||||
-rw-r--r-- | src/drivers/soundwire/max98373/Makefile.inc | 2 |
6 files changed, 12 insertions, 0 deletions
diff --git a/src/drivers/soundwire/alc1308/Makefile.inc b/src/drivers/soundwire/alc1308/Makefile.inc index 6c3458fa0e..f6430d88e7 100644 --- a/src/drivers/soundwire/alc1308/Makefile.inc +++ b/src/drivers/soundwire/alc1308/Makefile.inc @@ -1 +1,3 @@ +## SPDX-License-Identifier: GPL-2.0-only + ramstage-$(CONFIG_DRIVERS_SOUNDWIRE_ALC1308) += alc1308.c diff --git a/src/drivers/soundwire/alc5682/Makefile.inc b/src/drivers/soundwire/alc5682/Makefile.inc index eab940cbb1..38a97093ce 100644 --- a/src/drivers/soundwire/alc5682/Makefile.inc +++ b/src/drivers/soundwire/alc5682/Makefile.inc @@ -1 +1,3 @@ +## SPDX-License-Identifier: GPL-2.0-only + ramstage-$(CONFIG_DRIVERS_SOUNDWIRE_ALC5682) += alc5682.c diff --git a/src/drivers/soundwire/alc711/Makefile.inc b/src/drivers/soundwire/alc711/Makefile.inc index 78e4d1b7fe..63e0993435 100644 --- a/src/drivers/soundwire/alc711/Makefile.inc +++ b/src/drivers/soundwire/alc711/Makefile.inc @@ -1 +1,3 @@ +## SPDX-License-Identifier: GPL-2.0-only + ramstage-$(CONFIG_DRIVERS_SOUNDWIRE_ALC711) += alc711.c diff --git a/src/drivers/soundwire/cs42l42/Makefile.inc b/src/drivers/soundwire/cs42l42/Makefile.inc index b2475b89d4..b7c2261627 100644 --- a/src/drivers/soundwire/cs42l42/Makefile.inc +++ b/src/drivers/soundwire/cs42l42/Makefile.inc @@ -1 +1,3 @@ +## SPDX-License-Identifier: GPL-2.0-only + ramstage-$(CONFIG_DRIVERS_SOUNDWIRE_CS42L42) += cs42l42.c diff --git a/src/drivers/soundwire/max98363/Makefile.inc b/src/drivers/soundwire/max98363/Makefile.inc index 5501eb3d10..9c77f46e30 100644 --- a/src/drivers/soundwire/max98363/Makefile.inc +++ b/src/drivers/soundwire/max98363/Makefile.inc @@ -1 +1,3 @@ +## SPDX-License-Identifier: GPL-2.0-only + ramstage-$(CONFIG_DRIVERS_SOUNDWIRE_MAX98363) += max98363.c diff --git a/src/drivers/soundwire/max98373/Makefile.inc b/src/drivers/soundwire/max98373/Makefile.inc index 41c784d2ee..c1efb73dfe 100644 --- a/src/drivers/soundwire/max98373/Makefile.inc +++ b/src/drivers/soundwire/max98373/Makefile.inc @@ -1 +1,3 @@ +## SPDX-License-Identifier: GPL-2.0-only + ramstage-$(CONFIG_DRIVERS_SOUNDWIRE_MAX98373) += max98373.c |