Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

gpio: tps65xxx: Use SPDX license tag

I'm tired of boilerplate, use the SPDX tag.

Acked-by: Andrew F. Davis <afd@ti.com>
Reviewed-by: Keerthy <j-keerthy@ti.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

+4 -36
+1 -9
drivers/gpio/gpio-tps65086.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 1 2 /* 2 3 * Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com/ 3 4 * Andrew F. Davis <afd@ti.com> 4 - * 5 - * This program is free software; you can redistribute it and/or 6 - * modify it under the terms of the GNU General Public License version 2 as 7 - * published by the Free Software Foundation. 8 - * 9 - * This program is distributed "as is" WITHOUT ANY WARRANTY of any 10 - * kind, whether expressed or implied; without even the implied warranty 11 - * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 - * GNU General Public License version 2 for more details. 13 5 * 14 6 * Based on the TPS65912 driver 15 7 */
+1 -12
drivers/gpio/gpio-tps6586x.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 1 2 /* 2 3 * TI TPS6586x GPIO driver 3 4 * ··· 8 7 * Based on tps6586x.c 9 8 * Copyright (c) 2010 CompuLab Ltd. 10 9 * Mike Rapoport <mike@compulab.co.il> 11 - * 12 - * This program is free software; you can redistribute it and/or modify it 13 - * under the terms and conditions of the GNU General Public License, 14 - * version 2, as published by the Free Software Foundation. 15 - * 16 - * This program is distributed in the hope it will be useful, but WITHOUT 17 - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 18 - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 19 - * more details. 20 - * 21 - * You should have received a copy of the GNU General Public License 22 - * along with this program. If not, see <http://www.gnu.org/licenses/>. 23 10 */ 24 11 25 12 #include <linux/errno.h>
+1 -6
drivers/gpio/gpio-tps65910.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 /* 2 3 * TI TPS6591x GPIO driver 3 4 * ··· 6 5 * 7 6 * Author: Graeme Gregory <gg@slimlogic.co.uk> 8 7 * Author: Jorge Eduardo Candelaria <jedu@slimlogic.co.uk> 9 - * 10 - * This program is free software; you can redistribute it and/or modify it 11 - * under the terms of the GNU General Public License as published by the 12 - * Free Software Foundation; either version 2 of the License, or (at your 13 - * option) any later version. 14 - * 15 8 */ 16 9 17 10 #include <linux/kernel.h>
+1 -9
drivers/gpio/gpio-tps65912.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 1 2 /* 2 3 * GPIO driver for TI TPS65912x PMICs 3 4 * 4 5 * Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com/ 5 6 * Andrew F. Davis <afd@ti.com> 6 - * 7 - * This program is free software; you can redistribute it and/or 8 - * modify it under the terms of the GNU General Public License version 2 as 9 - * published by the Free Software Foundation. 10 - * 11 - * This program is distributed "as is" WITHOUT ANY WARRANTY of any 12 - * kind, whether expressed or implied; without even the implied warranty 13 - * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 - * GNU General Public License version 2 for more details. 15 7 * 16 8 * Based on the Arizona GPIO driver and the previous TPS65912 driver by 17 9 * Margarita Olaya Cabrera <magi@slimlogic.co.uk>