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

auxdisplay: Replace licenses with SPDX identifiers

Cc: Philippe Ombredanne <pombredanne@nexb.com>
Acked-by: Willy Tarreau <w@1wt.eu>
Acked-by: Linus Walleij <triad@dflund.se>
Acked-by: Robin van der Gracht <robin@protonic.nl>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>

+11 -115
+1 -1
drivers/auxdisplay/arm-charlcd.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 1 2 /* 2 3 * Driver for the on-board character LCD found on some ARM reference boards 3 4 * This is basically an Hitachi HD44780 LCD with a custom IP block to drive it 4 5 * http://en.wikipedia.org/wiki/HD44780_Character_LCD 5 6 * Currently it will just display the text "ARM Linux" and the linux version 6 7 * 7 - * License terms: GNU General Public License (GPL) version 2 8 8 * Author: Linus Walleij <triad@df.lth.se> 9 9 */ 10 10 #include <linux/init.h>
+1 -15
drivers/auxdisplay/cfag12864b.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 1 2 /* 2 3 * Filename: cfag12864b.c 3 4 * Version: 0.1.0 4 5 * Description: cfag12864b LCD driver 5 - * License: GPLv2 6 6 * Depends: ks0108 7 7 * 8 8 * Author: Copyright (C) Miguel Ojeda Sandonis 9 9 * Date: 2006-10-31 10 - * 11 - * This program is free software; you can redistribute it and/or modify 12 - * it under the terms of the GNU General Public License version 2 as 13 - * published by the Free Software Foundation. 14 - * 15 - * This program is distributed in the hope that it will be useful, 16 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 - * GNU General Public License for more details. 19 - * 20 - * You should have received a copy of the GNU General Public License 21 - * along with this program; if not, write to the Free Software 22 - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 23 - * 24 10 */ 25 11 26 12 #include <linux/init.h>
+1 -15
drivers/auxdisplay/cfag12864bfb.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 1 2 /* 2 3 * Filename: cfag12864bfb.c 3 4 * Version: 0.1.0 4 5 * Description: cfag12864b LCD framebuffer driver 5 - * License: GPLv2 6 6 * Depends: cfag12864b 7 7 * 8 8 * Author: Copyright (C) Miguel Ojeda Sandonis 9 9 * Date: 2006-10-31 10 - * 11 - * This program is free software; you can redistribute it and/or modify 12 - * it under the terms of the GNU General Public License version 2 as 13 - * published by the Free Software Foundation. 14 - * 15 - * This program is distributed in the hope that it will be useful, 16 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 - * GNU General Public License for more details. 19 - * 20 - * You should have received a copy of the GNU General Public License 21 - * along with this program; if not, write to the Free Software 22 - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 23 - * 24 10 */ 25 11 26 12 #include <linux/init.h>
+1 -5
drivers/auxdisplay/charlcd.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 /* 2 3 * Character LCD driver for Linux 3 4 * 4 5 * Copyright (C) 2000-2008, Willy Tarreau <w@1wt.eu> 5 6 * Copyright (C) 2016-2017 Glider bvba 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 9 - * as published by the Free Software Foundation; either version 10 - * 2 of the License, or (at your option) any later version. 11 7 */ 12 8 13 9 #include <linux/atomic.h>
+1 -5
drivers/auxdisplay/hd44780.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 /* 2 3 * HD44780 Character LCD driver for Linux 3 4 * 4 5 * Copyright (C) 2000-2008, Willy Tarreau <w@1wt.eu> 5 6 * Copyright (C) 2016-2017 Glider bvba 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 9 - * as published by the Free Software Foundation; either version 10 - * 2 of the License, or (at your option) any later version. 11 7 */ 12 8 13 9 #include <linux/delay.h>
+1 -9
drivers/auxdisplay/ht16k33.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 1 2 /* 2 3 * HT16K33 driver 3 4 * 4 5 * Author: Robin van der Gracht <robin@protonic.nl> 5 6 * 6 7 * Copyright: (C) 2016 Protonic Holland. 7 - * 8 - * This program is free software; you can redistribute it and/or modify 9 - * it under the terms of the GNU General Public License version 2 as 10 - * published by the Free Software Foundation. 11 - * 12 - * This program is distributed in the hope that it will be useful, but 13 - * WITHOUT ANY WARRANTY; without even the implied warranty of 14 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 - * General Public License for more details. 16 8 */ 17 9 18 10 #include <linux/kernel.h>
+1 -15
drivers/auxdisplay/ks0108.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 1 2 /* 2 3 * Filename: ks0108.c 3 4 * Version: 0.1.0 4 5 * Description: ks0108 LCD Controller driver 5 - * License: GPLv2 6 6 * Depends: parport 7 7 * 8 8 * Author: Copyright (C) Miguel Ojeda Sandonis 9 9 * Date: 2006-10-31 10 - * 11 - * This program is free software; you can redistribute it and/or modify 12 - * it under the terms of the GNU General Public License version 2 as 13 - * published by the Free Software Foundation. 14 - * 15 - * This program is distributed in the hope that it will be useful, 16 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 - * GNU General Public License for more details. 19 - * 20 - * You should have received a copy of the GNU General Public License 21 - * along with this program; if not, write to the Free Software 22 - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 23 - * 24 10 */ 25 11 26 12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+1 -5
drivers/auxdisplay/panel.c
··· 1 + // SPDX-License-Identifier: GPL-2.0+ 1 2 /* 2 3 * Front panel driver for Linux 3 4 * Copyright (C) 2000-2008, Willy Tarreau <w@1wt.eu> 4 5 * Copyright (C) 2016-2017 Glider bvba 5 - * 6 - * This program is free software; you can redistribute it and/or 7 - * modify it under the terms of the GNU General Public License 8 - * as published by the Free Software Foundation; either version 9 - * 2 of the License, or (at your option) any later version. 10 6 * 11 7 * This code drives an LCD module (/dev/lcd), and a keypad (/dev/keypad) 12 8 * connected to a parallel printer port.
+1 -15
include/linux/cfag12864b.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0 */ 1 2 /* 2 3 * Filename: cfag12864b.h 3 4 * Version: 0.1.0 4 5 * Description: cfag12864b LCD driver header 5 - * License: GPLv2 6 6 * 7 7 * Author: Copyright (C) Miguel Ojeda Sandonis 8 8 * Date: 2006-10-12 9 - * 10 - * This program is free software; you can redistribute it and/or modify 11 - * it under the terms of the GNU General Public License version 2 as 12 - * published by the Free Software Foundation. 13 - * 14 - * This program is distributed in the hope that it will be useful, 15 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 - * GNU General Public License for more details. 18 - * 19 - * You should have received a copy of the GNU General Public License 20 - * along with this program; if not, write to the Free Software 21 - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 22 - * 23 9 */ 24 10 25 11 #ifndef _CFAG12864B_H_
+1 -15
include/linux/ks0108.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0 */ 1 2 /* 2 3 * Filename: ks0108.h 3 4 * Version: 0.1.0 4 5 * Description: ks0108 LCD Controller driver header 5 - * License: GPLv2 6 6 * 7 7 * Author: Copyright (C) Miguel Ojeda Sandonis 8 8 * Date: 2006-10-31 9 - * 10 - * This program is free software; you can redistribute it and/or modify 11 - * it under the terms of the GNU General Public License version 2 as 12 - * published by the Free Software Foundation. 13 - * 14 - * This program is distributed in the hope that it will be useful, 15 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 - * GNU General Public License for more details. 18 - * 19 - * You should have received a copy of the GNU General Public License 20 - * along with this program; if not, write to the Free Software 21 - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 22 - * 23 9 */ 24 10 25 11 #ifndef _KS0108_H_
+1 -15
samples/auxdisplay/cfag12864b-example.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 1 2 /* 2 3 * Filename: cfag12864b-example.c 3 4 * Version: 0.1.0 4 5 * Description: cfag12864b LCD userspace example program 5 - * License: GPLv2 6 6 * 7 7 * Author: Copyright (C) Miguel Ojeda Sandonis 8 8 * Date: 2006-10-31 9 - * 10 - * This program is free software; you can redistribute it and/or modify 11 - * it under the terms of the GNU General Public License version 2 as 12 - * published by the Free Software Foundation. 13 - * 14 - * This program is distributed in the hope that it will be useful, 15 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 - * GNU General Public License for more details. 18 - * 19 - * You should have received a copy of the GNU General Public License 20 - * along with this program; if not, write to the Free Software 21 - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 22 - * 23 9 */ 24 10 25 11 /*