]> Git Repo - u-boot.git/commitdiff
video: kconfig: Drop the superfluous dependency
authorBin Meng <[email protected]>
Sun, 23 Jul 2023 04:40:30 +0000 (12:40 +0800)
committerAnatolij Gustschin <[email protected]>
Tue, 1 Aug 2023 11:34:05 +0000 (13:34 +0200)
PCI is always selected by X86 architecture hence "X86 && PCI" does
not make it better.

Signed-off-by: Bin Meng <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Tested-by: Simon Glass <[email protected]> # qemu-x86_64
drivers/video/Kconfig

index 43ec7e66955f8b59748482d5349433b07409cc3c..3f6b7d71b8e9b601b9165be9e2a48738dab22c23 100644 (file)
@@ -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
This page took 0.036331 seconds and 4 git commands to generate.