aboutsummaryrefslogtreecommitdiff
path: root/hw/nubus/nubus-bridge.c
diff options
context:
space:
mode:
authorMark Cave-Ayland <mark.cave-ayland@ilande.co.uk>2021-09-24 08:38:01 +0100
committerLaurent Vivier <laurent@vivier.eu>2021-09-29 10:45:19 +0200
commit9bf674bc71d972426d4659e0b7769f4e45219cf7 (patch)
treee76a9856ec05dd14e896bade60f3a9f223108a3d /hw/nubus/nubus-bridge.c
parent62437f90cf90d1a0fda855f17ca6d9e7c0204f92 (diff)
downloadqemu-9bf674bc71d972426d4659e0b7769f4e45219cf7.zip
qemu-9bf674bc71d972426d4659e0b7769f4e45219cf7.tar.gz
qemu-9bf674bc71d972426d4659e0b7769f4e45219cf7.tar.bz2
nubus-bridge: introduce separate NubusBridge structure
This is to allow the Nubus bridge to store its own additional state. Also update the comment in the file header to reflect that nubus-bridge is not specific to the Macintosh. Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Message-Id: <20210924073808.1041-14-mark.cave-ayland@ilande.co.uk> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw/nubus/nubus-bridge.c')
-rw-r--r--hw/nubus/nubus-bridge.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/nubus/nubus-bridge.c b/hw/nubus/nubus-bridge.c
index cd8c6a9..9566256 100644
--- a/hw/nubus/nubus-bridge.c
+++ b/hw/nubus/nubus-bridge.c
@@ -1,5 +1,5 @@
/*
- * QEMU Macintosh Nubus
+ * QEMU Nubus
*
* Copyright (c) 2013-2018 Laurent Vivier <laurent@vivier.eu>
*
@@ -22,7 +22,7 @@ static void nubus_bridge_class_init(ObjectClass *klass, void *data)
static const TypeInfo nubus_bridge_info = {
.name = TYPE_NUBUS_BRIDGE,
.parent = TYPE_SYS_BUS_DEVICE,
- .instance_size = sizeof(SysBusDevice),
+ .instance_size = sizeof(NubusBridge),
.class_init = nubus_bridge_class_init,
};