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

Configure Feed

Select the types of activity you want to include in your feed.

arch: Select fbdev helpers with CONFIG_VIDEO

Various Kconfig options selected the per-architecture helpers for
fbdev. But none of the contained code depends on fbdev. Standardize
on CONFIG_VIDEO, which will allow to add more general helpers for
video functionality.

CONFIG_VIDEO protects each architecture's video/ directory. This
allows for the use of more fine-grained control for each directory's
files, such as the use of CONFIG_STI_CORE on parisc.

v2:
- sparc: rebased onto Makefile changes

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
Cc: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Cc: Helge Deller <deller@gmx.de>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Andreas Larsson <andreas@gaisler.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: x86@kernel.org
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>

authored by

Thomas Zimmermann and committed by
Arnd Bergmann
f25eae2c 9c313ccd

+7 -6
+1 -1
arch/parisc/Makefile
··· 119 119 120 120 libs-y += arch/parisc/lib/ $(LIBGCC) 121 121 122 - drivers-y += arch/parisc/video/ 122 + drivers-$(CONFIG_VIDEO) += arch/parisc/video/ 123 123 124 124 boot := arch/parisc/boot 125 125
+2 -2
arch/sparc/Makefile
··· 59 59 libs-y += arch/sparc/prom/ 60 60 libs-y += arch/sparc/lib/ 61 61 62 - drivers-$(CONFIG_PM) += arch/sparc/power/ 63 - drivers-$(CONFIG_FB_CORE) += arch/sparc/video/ 62 + drivers-$(CONFIG_PM) += arch/sparc/power/ 63 + drivers-$(CONFIG_VIDEO) += arch/sparc/video/ 64 64 65 65 boot := arch/sparc/boot 66 66
+1 -1
arch/sparc/video/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0-only 2 2 3 - obj-$(CONFIG_FB_CORE) += fbdev.o 3 + obj-y += fbdev.o
+1 -1
arch/x86/Makefile
··· 258 258 # suspend and hibernation support 259 259 drivers-$(CONFIG_PM) += arch/x86/power/ 260 260 261 - drivers-$(CONFIG_FB_CORE) += arch/x86/video/ 261 + drivers-$(CONFIG_VIDEO) += arch/x86/video/ 262 262 263 263 #### 264 264 # boot loader support. Several targets are kept for legacy purposes
+2 -1
arch/x86/video/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0-only 2 - obj-$(CONFIG_FB_CORE) += fbdev.o 2 + 3 + obj-y += fbdev.o