From: Cédric Le Goater Date: Tue, 1 Sep 2020 12:21:50 +0000 (+0200) Subject: aspeed/smc: Fix max_slaves of the legacy SMC device X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9b9624714c979e05bb99065966c362b0315b490a;p=qemu.git aspeed/smc: Fix max_slaves of the legacy SMC device The legacy controller only has one slave. Reviewed-by: Joel Stanley Message-Id: <20200819100956.2216690-8-clg@kaod.org> Signed-off-by: Cédric Le Goater --- 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,