diff options
| author | Julian Braha <julianbraha@gmail.com> | 2026-07-23 13:28:18 +0100 |
|---|---|---|
| committer | Helge Deller <deller@gmx.de> | 2026-07-25 17:20:16 +0200 |
| commit | 0738ecee1ab15aa75d2ea433e636d8cbf25623de (patch) | |
| tree | 91265944132eecc989b79dc50191bf7732e8c579 | |
| parent | a43c94da4d48c2ccf480e72838c2455a0dc0a4ff (diff) | |
| download | linux-next-0738ecee1ab15aa75d2ea433e636d8cbf25623de.tar.gz linux-next-0738ecee1ab15aa75d2ea433e636d8cbf25623de.zip | |
fbdev: mb862xx: replace dead select with dependency
'select' does not work on config options in a 'choice', so currently it is
possible to enable FB_MB862XX_LIME without FB_LITTLE_ENDIAN.
We cannot replace the 'select FB_LITTLE_ENDIAN' without also changing
FB_FOREIGN_ENDIAN from 'select' to 'depends on', otherwise we will get
a recursive dependency.
Since the default choice is FB_BOTH_ENDIAN, let's use:
'depends on FB_LITTLE_ENDIAN || FB_BOTH_ENDIAN'
to avoid breaking defconfig.
This dead select was found by kconfirm, a static analysis tool for Kconfig.
Suggested-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Julian Braha <julianbraha@gmail.com>
Link: https://lore.kernel.org/all/20260722220023.196029-1-julianbraha@gmail.com/
Signed-off-by: Helge Deller <deller@gmx.de>
| -rw-r--r-- | drivers/video/fbdev/Kconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/video/fbdev/Kconfig b/drivers/video/fbdev/Kconfig index 085d3a202148..e8cd8cb76874 100644 --- a/drivers/video/fbdev/Kconfig +++ b/drivers/video/fbdev/Kconfig @@ -1717,8 +1717,7 @@ config FB_MB862XX_PCI_GDC config FB_MB862XX_LIME bool "Lime GDC" depends on OF && PPC - select FB_FOREIGN_ENDIAN - select FB_LITTLE_ENDIAN + depends on FB_LITTLE_ENDIAN || FB_BOTH_ENDIAN help Framebuffer support for Fujitsu Lime GDC on host CPU bus. |
