summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorBin Meng <bmeng@tinylab.org>2023-07-23 07:40:30 +0300
committerAnatolij Gustschin <agust@denx.de>2023-08-01 14:34:05 +0300
commit185ae84af0cbf69d6253b55b4097c071f932bc16 (patch)
treeb16d3b50ddaf0bfe5b41ff25c070c5a40ec36fbb /drivers
parent17cd80237b09c3926c317bd348959f057f8dec7d (diff)
downloadu-boot-185ae84af0cbf69d6253b55b4097c071f932bc16.tar.xz
video: kconfig: Drop the superfluous dependency
PCI is always selected by X86 architecture hence "X86 && PCI" does not make it better. Signed-off-by: Bin Meng <bmeng@tinylab.org> Reviewed-by: Simon Glass <sjg@chromium.org> Tested-by: Simon Glass <sjg@chromium.org> # qemu-x86_64
Diffstat (limited to 'drivers')
-rw-r--r--drivers/video/Kconfig8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig
index 43ec7e6695..3f6b7d71b8 100644
--- a/drivers/video/Kconfig
+++ b/drivers/video/Kconfig
@@ -64,8 +64,8 @@ config BACKLIGHT
config VIDEO_PCI_DEFAULT_FB_SIZE
hex "Default framebuffer size to use if no drivers request it"
- default 0x1000000 if X86 && PCI
- default 0 if !(X86 && PCI)
+ default 0x1000000 if X86
+ default 0 if !X86
help
Generally, video drivers request the amount of memory they need for
the frame buffer when they are bound, by setting the size field in
@@ -1036,8 +1036,8 @@ config SPL_SYS_WHITE_ON_BLACK
config SPL_VIDEO_PCI_DEFAULT_FB_SIZE
hex "Default framebuffer size to use if no drivers request it at SPL"
- default 0x1000000 if X86 && PCI
- default 0 if !(X86 && PCI)
+ default 0x1000000 if X86
+ default 0 if !X86
help
Generally, video drivers request the amount of memory they need for
the frame buffer when they are bound, by setting the size field in