diff --git a/Makefile.am b/Makefile.am index c362fcd..fb2aaa6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,9 @@ +# Top level Automake for x52pro-linux +# +# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org) +# +# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 + ACLOCAL_AMFLAGS = -I m4 SUBDIRS = lib utils tests diff --git a/configure.ac b/configure.ac index ee82170..f0fe388 100644 --- a/configure.ac +++ b/configure.ac @@ -1,3 +1,9 @@ +# Autoconf settings for x52pro-linux +# +# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org) +# +# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 + AC_INIT([x52pro-linux], [0.2.0-0], [nirenjan@gmail.com]) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) diff --git a/kernel_module/x52joy.c b/kernel_module/x52joy.c index 8a4aed8..e470698 100644 --- a/kernel_module/x52joy.c +++ b/kernel_module/x52joy.c @@ -7,6 +7,7 @@ * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, version 2. * + * SPDX-License-Identifier: GPL-2.0-only */ #ifdef CONFIG_USB_DEBUG diff --git a/kernel_module/x52joy_commands.c b/kernel_module/x52joy_commands.c index 62279a8..aed2311 100644 --- a/kernel_module/x52joy_commands.c +++ b/kernel_module/x52joy_commands.c @@ -7,6 +7,7 @@ * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, version 2. * + * SPDX-License-Identifier: GPL-2.0-only */ #ifdef CONFIG_USB_DEBUG diff --git a/kernel_module/x52joy_commands.h b/kernel_module/x52joy_commands.h index 75d920c..a6d2395 100644 --- a/kernel_module/x52joy_commands.h +++ b/kernel_module/x52joy_commands.h @@ -7,6 +7,7 @@ * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, version 2. * + * SPDX-License-Identifier: GPL-2.0-only */ #ifndef X52JOY_COMMANDS_H diff --git a/kernel_module/x52joy_common.h b/kernel_module/x52joy_common.h index f385ed7..4d2b018 100644 --- a/kernel_module/x52joy_common.h +++ b/kernel_module/x52joy_common.h @@ -7,6 +7,7 @@ * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, version 2. * + * SPDX-License-Identifier: GPL-2.0-only */ #ifndef X52JOY_COMMON_H diff --git a/kernel_module/x52joy_input.c b/kernel_module/x52joy_input.c index 5acb8c3..13bfaca 100644 --- a/kernel_module/x52joy_input.c +++ b/kernel_module/x52joy_input.c @@ -7,6 +7,7 @@ * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, version 2. * + * SPDX-License-Identifier: GPL-2.0-only */ #ifdef CONFIG_USB_DEBUG diff --git a/kernel_module/x52joy_map.h b/kernel_module/x52joy_map.h index 1cca581..18204a3 100644 --- a/kernel_module/x52joy_map.h +++ b/kernel_module/x52joy_map.h @@ -7,6 +7,7 @@ * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, version 2. * + * SPDX-License-Identifier: GPL-2.0-only */ #ifndef X52JOY_MAP_H diff --git a/lib/Makefile.am b/lib/Makefile.am index 891dcef..03a20ff 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,2 +1,8 @@ +# Top-level automake for libx52 and associated libraries +# +# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org) +# +# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 + SUBDIRS = libx52 libx52util libusbx52 diff --git a/lib/libusbx52/Makefile.am b/lib/libusbx52/Makefile.am index 2d4122a..68e5fa0 100644 --- a/lib/libusbx52/Makefile.am +++ b/lib/libusbx52/Makefile.am @@ -1,3 +1,9 @@ +# Automake for libusbx52 and associated utilities +# +# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org) +# +# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 + ACLOCAL_AMFLAGS = -I m4 # libusb stub library for use by test programs diff --git a/lib/libusbx52/libusbx52.h b/lib/libusbx52/libusbx52.h index 84c2b7c..e7d7ca1 100644 --- a/lib/libusbx52/libusbx52.h +++ b/lib/libusbx52/libusbx52.h @@ -3,10 +3,7 @@ * * Copyright (C) 2017 Nirenjan Krishnan (nirenjan@nirenjan.org) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, version 2. - * + * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 */ #include diff --git a/lib/libusbx52/usb_x52_stub.c b/lib/libusbx52/usb_x52_stub.c index 201a0ce..1293fd6 100644 --- a/lib/libusbx52/usb_x52_stub.c +++ b/lib/libusbx52/usb_x52_stub.c @@ -3,10 +3,7 @@ * * Copyright (C) 2017 Nirenjan Krishnan (nirenjan@nirenjan.org) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, version 2. - * + * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 */ #include diff --git a/lib/libusbx52/util/create_device_list.c b/lib/libusbx52/util/create_device_list.c index 419e624..8ccb9b1 100644 --- a/lib/libusbx52/util/create_device_list.c +++ b/lib/libusbx52/util/create_device_list.c @@ -5,10 +5,7 @@ * * Copyright (C) Nirenjan Krishnan (nirenjan@nirenjan.org) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, version 2. - * + * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 */ #include diff --git a/lib/libusbx52/util/log_actions.c b/lib/libusbx52/util/log_actions.c index f0f07d9..e94a01d 100644 --- a/lib/libusbx52/util/log_actions.c +++ b/lib/libusbx52/util/log_actions.c @@ -7,10 +7,7 @@ * * Copyright (C) Nirenjan Krishnan (nirenjan@nirenjan.org) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, version 2. - * + * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 */ #include diff --git a/lib/libx52/Makefile.am b/lib/libx52/Makefile.am index 952a98f..660b87f 100644 --- a/lib/libx52/Makefile.am +++ b/lib/libx52/Makefile.am @@ -1,3 +1,9 @@ +# Automake for libx52 +# +# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org) +# +# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 + ACLOCAL_AMFLAGS = -I m4 lib_LTLIBRARIES = libx52.la diff --git a/lib/libx52/libx52.h b/lib/libx52/libx52.h index 44493e7..645aa4f 100644 --- a/lib/libx52/libx52.h +++ b/lib/libx52/libx52.h @@ -3,10 +3,7 @@ * * Copyright (C) 2012-2017 Nirenjan Krishnan (nirenjan@nirenjan.org) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, version 2. - * + * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 */ #ifndef LIBX52_H diff --git a/lib/libx52/x52_commands.h b/lib/libx52/x52_commands.h index ecb6b1a..11dd4a6 100644 --- a/lib/libx52/x52_commands.h +++ b/lib/libx52/x52_commands.h @@ -3,10 +3,7 @@ * * Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, version 2. - * + * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 */ #ifndef X52_COMMANDS_H diff --git a/lib/libx52/x52_common.h b/lib/libx52/x52_common.h index 82d04ed..bb94198 100644 --- a/lib/libx52/x52_common.h +++ b/lib/libx52/x52_common.h @@ -3,10 +3,7 @@ * * Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, version 2. - * + * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 */ #ifndef X52JOY_COMMON_H diff --git a/lib/libx52/x52_control.c b/lib/libx52/x52_control.c index 7360332..6f4e7b4 100644 --- a/lib/libx52/x52_control.c +++ b/lib/libx52/x52_control.c @@ -3,10 +3,7 @@ * * Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, version 2. - * + * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 */ #include diff --git a/lib/libx52/x52_core.c b/lib/libx52/x52_core.c index db1d6e8..d97cfcb 100644 --- a/lib/libx52/x52_core.c +++ b/lib/libx52/x52_core.c @@ -3,10 +3,7 @@ * * Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, version 2. - * + * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 */ #include diff --git a/lib/libx52/x52_date_time.c b/lib/libx52/x52_date_time.c index 0f59f9f..1dafd19 100644 --- a/lib/libx52/x52_date_time.c +++ b/lib/libx52/x52_date_time.c @@ -3,10 +3,7 @@ * * Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, version 2. - * + * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 */ #include diff --git a/lib/libx52/x52_mfd_led.c b/lib/libx52/x52_mfd_led.c index 755b373..03e90ca 100644 --- a/lib/libx52/x52_mfd_led.c +++ b/lib/libx52/x52_mfd_led.c @@ -3,10 +3,7 @@ * * Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, version 2. - * + * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 */ #include diff --git a/lib/libx52/x52_strerror.c b/lib/libx52/x52_strerror.c index 2b8c912..74ddb5f 100644 --- a/lib/libx52/x52_strerror.c +++ b/lib/libx52/x52_strerror.c @@ -3,10 +3,7 @@ * * Copyright (C) 2012-2017 Nirenjan Krishnan (nirenjan@nirenjan.org) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, version 2. - * + * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 */ #include diff --git a/lib/libx52util/Makefile.am b/lib/libx52util/Makefile.am index 0647ab8..b760d37 100644 --- a/lib/libx52util/Makefile.am +++ b/lib/libx52util/Makefile.am @@ -1,3 +1,9 @@ +# Automake for libx52util +# +# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org) +# +# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 + ACLOCAL_AMFLAGS = -I m4 lib_LTLIBRARIES = libx52util.la @@ -23,3 +29,4 @@ EXTRA_DIST = x52_char_map.cfg \ CLEANFILES = util_char_map.c util_char_map.c: $(srcdir)/x52_char_map.cfg x52_char_map_gen.py $(AM_V_GEN) $(srcdir)/x52_char_map_gen.py $(srcdir)/x52_char_map.cfg $@ + diff --git a/lib/libx52util/libx52util.h b/lib/libx52util/libx52util.h index b61003b..c8bec34 100644 --- a/lib/libx52util/libx52util.h +++ b/lib/libx52util/libx52util.h @@ -3,10 +3,7 @@ * * Copyright (C) 2015 Nirenjan Krishnan (nirenjan@nirenjan.org) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, version 2. - * + * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 */ #ifndef LIBX52UTIL_H diff --git a/lib/libx52util/x52_char_map.cfg b/lib/libx52util/x52_char_map.cfg index 3260e0f..cf6eda1 100644 --- a/lib/libx52util/x52_char_map.cfg +++ b/lib/libx52util/x52_char_map.cfg @@ -1,4 +1,9 @@ # Conversion Map for X52 Pro MFD character map +# +# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org) +# +# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 + # The X52 Pro MFD uses a single byte character set and encodes multiple # character ranges in that set. This file defines the mapping from Unicode # code points to the vendor character set. This is transformed at compilation diff --git a/lib/libx52util/x52_char_map.h b/lib/libx52util/x52_char_map.h index eba2ae2..6dd4470 100644 --- a/lib/libx52util/x52_char_map.h +++ b/lib/libx52util/x52_char_map.h @@ -3,10 +3,7 @@ * * Copyright (C) 2015 Nirenjan Krishnan (nirenjan@nirenjan.org) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, version 2. - * + * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 */ #ifndef X52_CHAR_MAP_H diff --git a/lib/libx52util/x52_char_map_gen.py b/lib/libx52util/x52_char_map_gen.py index cb4acf0..74bdc77 100755 --- a/lib/libx52util/x52_char_map_gen.py +++ b/lib/libx52util/x52_char_map_gen.py @@ -1,5 +1,9 @@ #!/usr/bin/python # Character map generator +# +# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org) +# +# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 """ Generator script to parse character mapping for the X52/X52 Pro MFD diff --git a/lib/libx52util/x52_char_map_lookup.c b/lib/libx52util/x52_char_map_lookup.c index 267d740..76e9765 100644 --- a/lib/libx52util/x52_char_map_lookup.c +++ b/lib/libx52util/x52_char_map_lookup.c @@ -6,10 +6,7 @@ * * Copyright (C) 2015 Nirenjan Krishnan (nirenjan@nirenjan.org) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, version 2. - * + * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 */ #include diff --git a/tests/Makefile.am b/tests/Makefile.am index ab666e8..28aa9c0 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,3 +1,8 @@ +# Automake for libx52 tests +# +# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org) +# +# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 TEST_EXTENSIONS = .sh SH_LOG_COMPILER = $(SHELL) diff --git a/tests/common_infra.sh b/tests/common_infra.sh index c75c82c..be1ceb4 100644 --- a/tests/common_infra.sh +++ b/tests/common_infra.sh @@ -1,5 +1,9 @@ #!/bin/bash # Common infrastructure for the test cases +# +# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org) +# +# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 # Set up exit status codes EXIT_SUCCESS=0 diff --git a/tests/libx52/test_brightness.sh b/tests/libx52/test_brightness.sh index 458cd6a..b136cd9 100644 --- a/tests/libx52/test_brightness.sh +++ b/tests/libx52/test_brightness.sh @@ -1,4 +1,9 @@ #!/bin/bash +# MFD & LED brightness tests +# +# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org) +# +# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 source $(dirname $0)/../common_infra.sh diff --git a/tests/libx52/test_clock.sh b/tests/libx52/test_clock.sh index 4dca162..608156f 100644 --- a/tests/libx52/test_clock.sh +++ b/tests/libx52/test_clock.sh @@ -1,4 +1,9 @@ #!/bin/bash +# Clock tests +# +# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org) +# +# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 source $(dirname $0)/../common_infra.sh diff --git a/tests/libx52/test_indicator.sh b/tests/libx52/test_indicator.sh index fe5bdfb..5730dd0 100644 --- a/tests/libx52/test_indicator.sh +++ b/tests/libx52/test_indicator.sh @@ -1,4 +1,9 @@ #!/bin/bash +# Indicator (blink & shift) tests +# +# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org) +# +# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 source $(dirname $0)/../common_infra.sh diff --git a/tests/libx52/test_leds.sh b/tests/libx52/test_leds.sh index 12cd9b4..6cdc378 100644 --- a/tests/libx52/test_leds.sh +++ b/tests/libx52/test_leds.sh @@ -1,4 +1,9 @@ #!/bin/bash +# LED tests +# +# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org) +# +# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 source $(dirname $0)/../common_infra.sh diff --git a/tests/libx52/test_mfd.sh b/tests/libx52/test_mfd.sh index 2537879..cff9888 100644 --- a/tests/libx52/test_mfd.sh +++ b/tests/libx52/test_mfd.sh @@ -1,4 +1,9 @@ #!/bin/bash +# MFD tests +# +# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org) +# +# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 source $(dirname $0)/../common_infra.sh diff --git a/utils/Makefile.am b/utils/Makefile.am index a5816ab..2b3de0a 100644 --- a/utils/Makefile.am +++ b/utils/Makefile.am @@ -1,2 +1,8 @@ +# Top level Automake for utilities +# +# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org) +# +# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 + SUBDIRS = cli test diff --git a/utils/cli/Makefile.am b/utils/cli/Makefile.am index 7bb6bb3..68adb65 100644 --- a/utils/cli/Makefile.am +++ b/utils/cli/Makefile.am @@ -1,3 +1,9 @@ +# Automake for x52cli +# +# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org) +# +# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 + ACLOCAL_AMFLAGS = -I m4 bin_PROGRAMS = x52cli diff --git a/utils/cli/x52_cli.c b/utils/cli/x52_cli.c index 4ec2818..1e84ffa 100644 --- a/utils/cli/x52_cli.c +++ b/utils/cli/x52_cli.c @@ -3,9 +3,7 @@ * * Copyright (C) 2015 Nirenjan Krishnan (nirenjan@nirenjan.org) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, version 2. + * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 */ #include diff --git a/utils/test/Makefile.am b/utils/test/Makefile.am index ee8dc83..17bf123 100644 --- a/utils/test/Makefile.am +++ b/utils/test/Makefile.am @@ -1,3 +1,9 @@ +# Automake for x52test +# +# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org) +# +# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 + ACLOCAL_AMFLAGS = -I m4 bin_PROGRAMS = x52test diff --git a/utils/test/x52_test.c b/utils/test/x52_test.c index bea1eca..9425aa8 100644 --- a/utils/test/x52_test.c +++ b/utils/test/x52_test.c @@ -3,10 +3,7 @@ * * Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, version 2. - * + * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 */ #include diff --git a/utils/test/x52_test_clock.c b/utils/test/x52_test_clock.c index b686576..b79b233 100644 --- a/utils/test/x52_test_clock.c +++ b/utils/test/x52_test_clock.c @@ -3,10 +3,7 @@ * * Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, version 2. - * + * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 */ #include diff --git a/utils/test/x52_test_common.h b/utils/test/x52_test_common.h index a9cc491..bad09e0 100644 --- a/utils/test/x52_test_common.h +++ b/utils/test/x52_test_common.h @@ -3,10 +3,7 @@ * * Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, version 2. - * + * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 */ #ifndef X52_TEST_COMMON_H diff --git a/utils/test/x52_test_led.c b/utils/test/x52_test_led.c index 8202242..2bee5bd 100644 --- a/utils/test/x52_test_led.c +++ b/utils/test/x52_test_led.c @@ -3,10 +3,7 @@ * * Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, version 2. - * + * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 */ #include diff --git a/utils/test/x52_test_mfd.c b/utils/test/x52_test_mfd.c index ace2bed..0513746 100644 --- a/utils/test/x52_test_mfd.c +++ b/utils/test/x52_test_mfd.c @@ -3,10 +3,7 @@ * * Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org) * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, version 2. - * + * SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0 */ #include