mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
7470849745
STI core files have been located in console and fbdev code. Move the source code and header to the directories for video helpers. Also update the config and build rules such that the code depends on the config symbol CONFIG_STI_CORE, which STI console and STI framebuffer select automatically. Cleans up the console makefile and prepares PARISC to implement fb_is_primary_device() within the arch/ directory. No functional changes. Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Helge Deller <deller@gmx.de> Link: https://patchwork.freedesktop.org/patch/msgid/20230417125651.25126-12-tzimmermann@suse.de
11 lines
438 B
Makefile
11 lines
438 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Makefile for the Linux graphics to console drivers.
|
|
# 5 Aug 1999, James Simmons, <mailto:jsimmons@users.sf.net>
|
|
# Rewritten to use lists instead of if-statements.
|
|
|
|
obj-$(CONFIG_DUMMY_CONSOLE) += dummycon.o
|
|
obj-$(CONFIG_SGI_NEWPORT_CONSOLE) += newport_con.o
|
|
obj-$(CONFIG_STI_CONSOLE) += sticon.o
|
|
obj-$(CONFIG_VGA_CONSOLE) += vgacon.o
|
|
obj-$(CONFIG_MDA_CONSOLE) += mdacon.o
|