diff options
author | Javier Martinez Canillas <javierm@redhat.com> | 2022-05-05 15:04:18 +0300 |
---|---|---|
committer | Javier Martinez Canillas <javierm@redhat.com> | 2022-05-13 15:05:19 +0300 |
commit | fa0e256450f27a7d85f65c63f05e6897954a1d53 (patch) | |
tree | da6ad881a4b3d87cf43df8f4c064cf66236d3697 /drivers | |
parent | 3367aa7d74d240261de2543ddb35531ccad9d884 (diff) | |
download | linux-fa0e256450f27a7d85f65c63f05e6897954a1d53.tar.xz |
fbdev: vesafb: Allow to be built if COMPILE_TEST is enabled
The driver has runtime but no build time dependency with X86, so it can
be built for testing purposes if the COMPILE_TEST option is enabled.
This is useful to have more build coverage and make sure that the driver
is not affected by changes that could cause build regressions.
Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
Acked-by: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://patchwork.freedesktop.org/patch/msgid/20220505120419.314136-1-javierm@redhat.com
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/video/fbdev/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/Kconfig b/drivers/video/fbdev/Kconfig index f2a6b81e45c4..bd849013f16f 100644 --- a/drivers/video/fbdev/Kconfig +++ b/drivers/video/fbdev/Kconfig @@ -616,7 +616,7 @@ config FB_UVESA config FB_VESA bool "VESA VGA graphics support" - depends on (FB = y) && X86 + depends on (FB = y) && (X86 || COMPILE_TEST) select FB_CFB_FILLRECT select FB_CFB_COPYAREA select FB_CFB_IMAGEBLIT |