diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2019-01-29 12:16:25 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-03-07 21:45:53 +0100 |
commit | 464399a9b4ae81d7dad33a4acb30dfb76c7b1bd2 (patch) | |
tree | e06aff8f6c3ac364997f405d7be1ddb031dd3a44 | |
parent | 1001800cc66668ec72d1a0e55a0e0532308e04d0 (diff) |
sd: express dependencies with kconfig
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | default-configs/arm-softmmu.mak | 1 | ||||
-rw-r--r-- | hw/sd/Kconfig | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/default-configs/arm-softmmu.mak b/default-configs/arm-softmmu.mak index 8bb4fd1926..2a7efc1167 100644 --- a/default-configs/arm-softmmu.mak +++ b/default-configs/arm-softmmu.mak @@ -6,7 +6,6 @@ CONFIG_VGA=y CONFIG_NAND=y CONFIG_ECC=y CONFIG_SERIAL=y -CONFIG_SD=y CONFIG_MAX7310=y CONFIG_WM8750=y CONFIG_TWL92230=y diff --git a/hw/sd/Kconfig b/hw/sd/Kconfig index 8f12d9c1bb..864f535011 100644 --- a/hw/sd/Kconfig +++ b/hw/sd/Kconfig @@ -1,9 +1,11 @@ config PL181 bool + select SD config SSI_SD bool depends on SSI + select SD config SD bool |