diff options
author | Arnd Bergmann <arnd@arndb.de> | 2014-07-15 03:58:06 -0400 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2014-07-23 11:41:00 -0400 |
commit | ec4c4d877becf1c224f45347f4fc0016765e00d0 (patch) | |
tree | 65978c77a047bbec724f7996bba69d4474ed244c /drivers/video | |
parent | 9db58cc9f385457524d3f6548198532168aecd23 (diff) |
video: fix up versatile CLCD helper move
commit 11c32d7b6274cb0f ("video: move Versatile CLCD helpers")
moved files out of the plat-versatile directory but in the process
got a few of the dependencies wrong:
- If CONFIG_FB is not set, the file no longer gets built, resulting
in a link error
- If CONFIG_FB or CONFIG_FB_ARMCLCD are disabled, we also get a
Kconfig warning for incorrect dependencies due to the symbol
being 'select'ed from the platform Kconfig.
- When the file is not built, we also get a link error for missing
symbols.
This patch should fix all three, by removing the 'select' statements,
changing the Kconfig description of the symbol to be enabled in
exactly the right configurations, and adding inline stub functions
for the case when the framebuffer driver is disabled.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/fbdev/Kconfig | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/video/fbdev/Kconfig b/drivers/video/fbdev/Kconfig index 92026d31bb48..bdf463072247 100644 --- a/drivers/video/fbdev/Kconfig +++ b/drivers/video/fbdev/Kconfig | |||
@@ -292,10 +292,8 @@ config FB_ARMCLCD | |||
292 | 292 | ||
293 | # Helper logic selected only by the ARM Versatile platform family. | 293 | # Helper logic selected only by the ARM Versatile platform family. |
294 | config PLAT_VERSATILE_CLCD | 294 | config PLAT_VERSATILE_CLCD |
295 | depends on FB_ARMCLCD | 295 | def_bool ARCH_VERSATILE || ARCH_REALVIEW || ARCH_VEXPRESS |
296 | depends on (PLAT_VERSATILE || ARCH_INTEGRATOR) | 296 | depends on FB_ARMCLCD && FB=y |
297 | default y | ||
298 | bool | ||
299 | 297 | ||
300 | config FB_ACORN | 298 | config FB_ACORN |
301 | bool "Acorn VIDC support" | 299 | bool "Acorn VIDC support" |