arm-charlcd.c (b1bf6119dc5f83bcdfd917bfcf7d0836f896c50b) | arm-charlcd.c (351f683b9823a3d1bffb6e2e3f381601aa0b2671) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 |
|
1/* 2 * Driver for the on-board character LCD found on some ARM reference boards 3 * This is basically an Hitachi HD44780 LCD with a custom IP block to drive it 4 * http://en.wikipedia.org/wiki/HD44780_Character_LCD 5 * Currently it will just display the text "ARM Linux" and the linux version 6 * | 2/* 3 * Driver for the on-board character LCD found on some ARM reference boards 4 * This is basically an Hitachi HD44780 LCD with a custom IP block to drive it 5 * http://en.wikipedia.org/wiki/HD44780_Character_LCD 6 * Currently it will just display the text "ARM Linux" and the linux version 7 * |
7 * License terms: GNU General Public License (GPL) version 2 | |
8 * Author: Linus Walleij <triad@df.lth.se> 9 */ 10#include <linux/init.h> 11#include <linux/interrupt.h> 12#include <linux/platform_device.h> 13#include <linux/of.h> 14#include <linux/completion.h> 15#include <linux/delay.h> --- 355 unchanged lines hidden --- | 8 * Author: Linus Walleij <triad@df.lth.se> 9 */ 10#include <linux/init.h> 11#include <linux/interrupt.h> 12#include <linux/platform_device.h> 13#include <linux/of.h> 14#include <linux/completion.h> 15#include <linux/delay.h> --- 355 unchanged lines hidden --- |