forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
auxdisplay: Replace licenses with SPDX identifiers
Cc: Philippe Ombredanne <[email protected]> Acked-by: Willy Tarreau <[email protected]> Acked-by: Linus Walleij <[email protected]> Acked-by: Robin van der Gracht <[email protected]> Acked-by: Geert Uytterhoeven <[email protected]> Signed-off-by: Miguel Ojeda <[email protected]>
- Loading branch information
Showing
11 changed files
with
11 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* | ||
* Driver for the on-board character LCD found on some ARM reference boards | ||
* This is basically an Hitachi HD44780 LCD with a custom IP block to drive it | ||
* http://en.wikipedia.org/wiki/HD44780_Character_LCD | ||
* Currently it will just display the text "ARM Linux" and the linux version | ||
* | ||
* License terms: GNU General Public License (GPL) version 2 | ||
* Author: Linus Walleij <[email protected]> | ||
*/ | ||
#include <linux/init.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
// SPDX-License-Identifier: GPL-2.0+ | ||
/* | ||
* Character LCD driver for Linux | ||
* | ||
* Copyright (C) 2000-2008, Willy Tarreau <[email protected]> | ||
* Copyright (C) 2016-2017 Glider bvba | ||
* | ||
* 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; either version | ||
* 2 of the License, or (at your option) any later version. | ||
*/ | ||
|
||
#include <linux/atomic.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
// SPDX-License-Identifier: GPL-2.0+ | ||
/* | ||
* HD44780 Character LCD driver for Linux | ||
* | ||
* Copyright (C) 2000-2008, Willy Tarreau <[email protected]> | ||
* Copyright (C) 2016-2017 Glider bvba | ||
* | ||
* 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; either version | ||
* 2 of the License, or (at your option) any later version. | ||
*/ | ||
|
||
#include <linux/delay.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,10 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* | ||
* HT16K33 driver | ||
* | ||
* Author: Robin van der Gracht <[email protected]> | ||
* | ||
* Copyright: (C) 2016 Protonic Holland. | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 as | ||
* published by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, but | ||
* WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* General Public License for more details. | ||
*/ | ||
|
||
#include <linux/kernel.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
// SPDX-License-Identifier: GPL-2.0+ | ||
/* | ||
* Front panel driver for Linux | ||
* Copyright (C) 2000-2008, Willy Tarreau <[email protected]> | ||
* Copyright (C) 2016-2017 Glider bvba | ||
* | ||
* 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; either version | ||
* 2 of the License, or (at your option) any later version. | ||
* | ||
* This code drives an LCD module (/dev/lcd), and a keypad (/dev/keypad) | ||
* connected to a parallel printer port. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters