mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
7e76aece6f
Extract the character line display core support from the simple ASCII LCD driver for the MIPS Boston, Malta & SEAD3 development boards into its own subdriver, so it can be reused for other displays. As this moves the "message" device attribute in sysfs in a "linedisp.N" subdirectory, a symlink is added to preserve backwards compatibility. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
17 lines
551 B
Makefile
17 lines
551 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the kernel auxiliary displays device drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_CHARLCD) += charlcd.o
|
|
obj-$(CONFIG_HD44780_COMMON) += hd44780_common.o
|
|
obj-$(CONFIG_ARM_CHARLCD) += arm-charlcd.o
|
|
obj-$(CONFIG_KS0108) += ks0108.o
|
|
obj-$(CONFIG_CFAG12864B) += cfag12864b.o cfag12864bfb.o
|
|
obj-$(CONFIG_IMG_ASCII_LCD) += img-ascii-lcd.o
|
|
obj-$(CONFIG_HD44780) += hd44780.o
|
|
obj-$(CONFIG_HT16K33) += ht16k33.o
|
|
obj-$(CONFIG_PARPORT_PANEL) += panel.o
|
|
obj-$(CONFIG_LCD2S) += lcd2s.o
|
|
obj-$(CONFIG_LINEDISP) += line-display.o
|