diff options
author | Tom Rini <trini@konsulko.com> | 2025-07-11 09:20:09 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-07-18 12:22:05 -0600 |
commit | 14d20133a85b63215e7848fe9f84bf8504e0df47 (patch) | |
tree | bf4a487c5ce1a2d995d03eea7b3bd59cdb3ba991 | |
parent | 0f83825802d8938fb584c12f115bde900efe71c1 (diff) | |
download | u-boot-14d20133a85b63215e7848fe9f84bf8504e0df47.zip u-boot-14d20133a85b63215e7848fe9f84bf8504e0df47.tar.gz u-boot-14d20133a85b63215e7848fe9f84bf8504e0df47.tar.bz2 |
misc: Tighten requirements on IHS_FPGA driver
This driver requires that the gdsys legacy driver option also be enabled
in order to build. Express that requirement in Kconfig as well.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | drivers/misc/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig index 119014a..07a1d96 100644 --- a/drivers/misc/Kconfig +++ b/drivers/misc/Kconfig @@ -650,7 +650,7 @@ config GDSYS_SOC config IHS_FPGA bool "Enable IHS FPGA driver" - depends on MISC + depends on MISC && (GDSYS_LEGACY_DRIVERS || SYS_FPGA_FLAVOR_GAZERBEAM) help Support IHS (Integrated Hardware Systems) FPGA, the main FPGAs on gdsys devices, which supply the majority of the functionality offered |