diff options
author | Cédric Le Goater | 2020-09-01 14:21:50 +0200 |
---|---|---|
committer | Cédric Le Goater | 2020-09-01 14:21:50 +0200 |
commit | 9b9624714c979e05bb99065966c362b0315b490a (patch) | |
tree | 45f4dd6cd3cbcae57efb94b7bd0eabf3cce073fa /hw/ssi/aspeed_smc.c | |
parent | aspeed/smc: Fix MemoryRegionOps definition (diff) | |
download | qemu-9b9624714c979e05bb99065966c362b0315b490a.tar.gz qemu-9b9624714c979e05bb99065966c362b0315b490a.tar.xz qemu-9b9624714c979e05bb99065966c362b0315b490a.zip |
aspeed/smc: Fix max_slaves of the legacy SMC device
The legacy controller only has one slave.
Reviewed-by: Joel Stanley <joel@jms.id.au>
Message-Id: <20200819100956.2216690-8-clg@kaod.org>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Diffstat (limited to 'hw/ssi/aspeed_smc.c')
-rw-r--r-- | hw/ssi/aspeed_smc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ssi/aspeed_smc.c b/hw/ssi/aspeed_smc.c index 0646e0dca7..8c79a5552f 100644 --- a/hw/ssi/aspeed_smc.c +++ b/hw/ssi/aspeed_smc.c @@ -259,7 +259,7 @@ static const AspeedSMCController controllers[] = { .r_timings = R_TIMINGS, .nregs_timings = 1, .conf_enable_w0 = CONF_ENABLE_W0, - .max_slaves = 5, + .max_slaves = 1, .segments = aspeed_segments_legacy, .flash_window_base = ASPEED_SOC_SMC_FLASH_BASE, .flash_window_size = 0x6000000, |