diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-02-21 19:50:57 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-03-06 16:18:42 +0100 |
commit | c3c7153f95ed48c0491a70d3be1f11990752fd04 (patch) | |
tree | 18f15fda625d05599dba139426bc883ec2f30899 /hw/sh4 | |
parent | d044adc21ac6088a414bc6a32a598d9ad89f8016 (diff) |
hw/sh4: Add missing Kconfig dependency on SH7750 for the R2D board
r2d_init() calls sh7750_init() so depends on SH7750.Harmless
at the moment because nothing actually uses CONFIG_SH7750
(hw/sh4/meson.build always compiles sh7750.c and sh7750_regnames.c
unconditionally).
Fixes: 7ab58d4c841 ("sh4-softmmu.mak: express dependencies with Kconfig")
Reported-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20210222141514.2646278-3-f4bug@amsat.org>
Diffstat (limited to 'hw/sh4')
-rw-r--r-- | hw/sh4/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/sh4/Kconfig b/hw/sh4/Kconfig index 4cbce3a0ed..0452b4624a 100644 --- a/hw/sh4/Kconfig +++ b/hw/sh4/Kconfig @@ -10,6 +10,7 @@ config R2D select PCI select SM501 select SH4 + select SH7750 config SHIX bool |