aboutsummaryrefslogtreecommitdiff
path: root/hw/ssi
diff options
context:
space:
mode:
authorCédric Le Goater <clg@kaod.org>2022-03-08 09:18:11 +0100
committerCédric Le Goater <clg@kaod.org>2022-03-08 09:18:11 +0100
commit9bbdfe0569cc16199ed1a7deb77680b9d5051d1e (patch)
tree7eaeea35f825695618b53392cbe86ce4dc68b986 /hw/ssi
parentae945a00ff465f2e08be6ca6d83946fe5f9d6018 (diff)
downloadqemu-9bbdfe0569cc16199ed1a7deb77680b9d5051d1e.zip
qemu-9bbdfe0569cc16199ed1a7deb77680b9d5051d1e.tar.gz
qemu-9bbdfe0569cc16199ed1a7deb77680b9d5051d1e.tar.bz2
aspeed/smc: Let the SSI core layer define the bus name
If no id is provided, qdev automatically assigns an unique name with the following pattern "<type>.<index>" which avoids bus name collision when using multiple buses. Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-Id: <20220307071856.1410731-6-clg@kaod.org> Signed-off-by: Cédric Le Goater <clg@kaod.org>
Diffstat (limited to 'hw/ssi')
-rw-r--r--hw/ssi/aspeed_smc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ssi/aspeed_smc.c b/hw/ssi/aspeed_smc.c
index f1b5644..dc6d4a1 100644
--- a/hw/ssi/aspeed_smc.c
+++ b/hw/ssi/aspeed_smc.c
@@ -1130,7 +1130,7 @@ static void aspeed_smc_realize(DeviceState *dev, Error **errp)
/* DMA irq. Keep it first for the initialization in the SoC */
sysbus_init_irq(sbd, &s->irq);
- s->spi = ssi_create_bus(dev, "spi");
+ s->spi = ssi_create_bus(dev, NULL);
/* Setup cs_lines for peripherals */
s->cs_lines = g_new0(qemu_irq, asc->cs_num_max);