diff options
author | Mark Brown <broonie@linaro.org> | 2013-12-18 03:37:01 +0400 |
---|---|---|
committer | Jiri Slaby <jslaby@suse.cz> | 2015-04-22 09:58:49 +0300 |
commit | 1d458a6ccc6c610cc8ae46a96c20fc0b9cdce4e2 (patch) | |
tree | cec35626907ba909ca5940b46a77480c3ce27de8 /drivers/video | |
parent | 147ff1a3401cc7060ee047d102df04c4e64d73b6 (diff) | |
download | linux-1d458a6ccc6c610cc8ae46a96c20fc0b9cdce4e2.tar.xz |
video: vgacon: Don't build on arm64
commit ee23794b86689e655cedd616e98c03bc3c74f5ec upstream.
arm64 is unlikely to have a VGA console and does not export screen_info
causing build failures if the driver is build, for example in all*config.
Add a dependency on !ARM64 to prevent this.
This list is getting quite long, it may be easier to depend on a symbol
which architectures that do support the driver can select.
Signed-off-by: Mark Brown <broonie@linaro.org>
[tomi.valkeinen@ti.com: moved && to first modified line]
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/console/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/video/console/Kconfig b/drivers/video/console/Kconfig index 846caab75a46..fe1cd0148e13 100644 --- a/drivers/video/console/Kconfig +++ b/drivers/video/console/Kconfig @@ -8,7 +8,8 @@ config VGA_CONSOLE bool "VGA text console" if EXPERT || !X86 depends on !4xx && !8xx && !SPARC && !M68K && !PARISC && !FRV && \ !SUPERH && !BLACKFIN && !AVR32 && !MN10300 && !CRIS && \ - (!ARM || ARCH_FOOTBRIDGE || ARCH_INTEGRATOR || ARCH_NETWINDER) + (!ARM || ARCH_FOOTBRIDGE || ARCH_INTEGRATOR || ARCH_NETWINDER) && \ + !ARM64 default y help Saying Y here will allow you to use Linux in text mode through a |