From: Markus Armbruster <armbru@redhat.com>
To: qemu-devel@nongnu.org
Cc: Paolo Bonzini <pbonzini@redhat.com>
Subject: [PATCH v3 20/39] isa: Convert uses of isa_create(), isa_try_create() manually
Date: Tue, 9 Jun 2020 18:39:13 +0200 [thread overview]
Message-ID: <20200609163932.1566209-21-armbru@redhat.com> (raw)
In-Reply-To: <20200609163932.1566209-1-armbru@redhat.com>
Same transformation as in the previous commit. Manual, because
convincing Coccinelle to transform these cases is not worthwhile.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
---
include/hw/net/ne2000-isa.h | 5 +++--
hw/block/fdc.c | 4 ++--
hw/i386/pc.c | 4 ++--
hw/ppc/pnv.c | 9 ++++-----
4 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/include/hw/net/ne2000-isa.h b/include/hw/net/ne2000-isa.h
index eef17a680d..af59ee0b02 100644
--- a/include/hw/net/ne2000-isa.h
+++ b/include/hw/net/ne2000-isa.h
@@ -13,6 +13,7 @@
#include "hw/isa/isa.h"
#include "hw/qdev-properties.h"
#include "net/net.h"
+#include "qapi/error.h"
#define TYPE_ISA_NE2000 "ne2k_isa"
@@ -23,14 +24,14 @@ static inline ISADevice *isa_ne2000_init(ISABus *bus, int base, int irq,
qemu_check_nic_model(nd, "ne2k_isa");
- d = isa_try_create(bus, TYPE_ISA_NE2000);
+ d = isa_try_new(TYPE_ISA_NE2000);
if (d) {
DeviceState *dev = DEVICE(d);
qdev_prop_set_uint32(dev, "iobase", base);
qdev_prop_set_uint32(dev, "irq", irq);
qdev_set_nic_properties(dev, nd);
- qdev_init_nofail(dev);
+ isa_realize_and_unref(d, bus, &error_fatal);
}
return d;
}
diff --git a/hw/block/fdc.c b/hw/block/fdc.c
index 1feb398875..a3250f6fdb 100644
--- a/hw/block/fdc.c
+++ b/hw/block/fdc.c
@@ -2544,7 +2544,7 @@ ISADevice *fdctrl_init_isa(ISABus *bus, DriveInfo **fds)
DeviceState *dev;
ISADevice *isadev;
- isadev = isa_try_create(bus, TYPE_ISA_FDC);
+ isadev = isa_try_new(TYPE_ISA_FDC);
if (!isadev) {
return NULL;
}
@@ -2558,7 +2558,7 @@ ISADevice *fdctrl_init_isa(ISABus *bus, DriveInfo **fds)
qdev_prop_set_drive(dev, "driveB", blk_by_legacy_dinfo(fds[1]),
&error_fatal);
}
- qdev_init_nofail(dev);
+ isa_realize_and_unref(isadev, bus, &error_fatal);
return isadev;
}
diff --git a/hw/i386/pc.c b/hw/i386/pc.c
index b549d0bbfc..280560f790 100644
--- a/hw/i386/pc.c
+++ b/hw/i386/pc.c
@@ -1157,14 +1157,14 @@ static void pc_superio_init(ISABus *isa_bus, bool create_fdctrl, bool no_vmport)
i8042 = isa_create_simple(isa_bus, "i8042");
if (!no_vmport) {
isa_create_simple(isa_bus, TYPE_VMPORT);
- vmmouse = isa_try_create(isa_bus, "vmmouse");
+ vmmouse = isa_try_new("vmmouse");
} else {
vmmouse = NULL;
}
if (vmmouse) {
object_property_set_link(OBJECT(vmmouse), OBJECT(i8042),
"i8042", &error_abort);
- qdev_init_nofail(DEVICE(vmmouse));
+ isa_realize_and_unref(vmmouse, isa_bus, &error_fatal);
}
port92 = isa_create_simple(isa_bus, TYPE_PORT92);
diff --git a/hw/ppc/pnv.c b/hw/ppc/pnv.c
index e0588285a2..ffaf12b006 100644
--- a/hw/ppc/pnv.c
+++ b/hw/ppc/pnv.c
@@ -694,12 +694,11 @@ static bool pnv_match_cpu(const char *default_type, const char *cpu_type)
static void pnv_ipmi_bt_init(ISABus *bus, IPMIBmc *bmc, uint32_t irq)
{
- Object *obj;
+ ISADevice *dev = isa_new("isa-ipmi-bt");
- obj = OBJECT(isa_create(bus, "isa-ipmi-bt"));
- object_property_set_link(obj, OBJECT(bmc), "bmc", &error_fatal);
- object_property_set_int(obj, irq, "irq", &error_fatal);
- object_property_set_bool(obj, true, "realized", &error_fatal);
+ object_property_set_link(OBJECT(dev), OBJECT(bmc), "bmc", &error_fatal);
+ object_property_set_int(OBJECT(dev), irq, "irq", &error_fatal);
+ isa_realize_and_unref(dev, bus, &error_fatal);
}
static void pnv_chip_power10_pic_print_info(PnvChip *chip, Monitor *mon)
--
2.26.2
next prev parent reply other threads:[~2020-06-09 17:17 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-09 16:38 [PATCH v3 00/39] qdev: Rework how we plug into the parent bus Markus Armbruster
2020-06-09 16:38 ` [PATCH v3 01/39] qdev: Rename qbus_realize() to qbus_init() Markus Armbruster
2020-06-09 16:38 ` [PATCH v3 02/39] Revert "hw/prep: realize the PCI root bus as part of the prep init" Markus Armbruster
2020-06-09 16:38 ` [PATCH v3 03/39] Revert "hw/versatile: realize the PCI root bus as part of the versatile init" Markus Armbruster
2020-06-09 16:38 ` [PATCH v3 04/39] qdev: New qdev_new(), qdev_realize(), etc Markus Armbruster
2020-06-09 16:38 ` [PATCH v3 05/39] qdev: Put qdev_new() to use with Coccinelle Markus Armbruster
2020-06-09 16:38 ` [PATCH v3 06/39] qdev: Convert to qbus_realize(), qbus_unrealize() Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 07/39] qdev: Convert to qdev_unrealize() with Coccinelle Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 08/39] qdev: Convert to qdev_unrealize() manually Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 09/39] qdev: Convert uses of qdev_create() with Coccinelle Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 10/39] qdev: Convert uses of qdev_create() manually Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 11/39] qdev: Convert uses of qdev_set_parent_bus() with Coccinelle Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 12/39] qdev: Convert uses of qdev_set_parent_bus() manually Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 13/39] pci: New pci_new(), pci_realize_and_unref() etc Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 14/39] hw/ppc: Eliminate two superfluous QOM casts Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 15/39] pci: Convert uses of pci_create() etc. with Coccinelle Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 16/39] pci: Convert uses of pci_create() etc. manually Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 17/39] pci: pci_create(), pci_create_multifunction() are now unused, drop Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 18/39] isa: New isa_new(), isa_realize_and_unref() etc Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 19/39] isa: Convert uses of isa_create() with Coccinelle Markus Armbruster
2020-06-09 16:39 ` Markus Armbruster [this message]
2020-06-09 16:39 ` [PATCH v3 21/39] isa: isa_create(), isa_try_create() are now unused, drop Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 22/39] ssi: ssi_auto_connect_slaves() never does anything, drop Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 23/39] ssi: Convert uses of ssi_create_slave_no_init() with Coccinelle Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 24/39] ssi: Convert last use of ssi_create_slave_no_init() manually Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 25/39] ssi: ssi_create_slave_no_init() is now unused, drop Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 26/39] usb: New usb_new(), usb_realize_and_unref() Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 27/39] usb: Convert uses of usb_create() Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 28/39] usb: usb_create() is now unused, drop Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 29/39] usb: Eliminate usb_try_create_simple() Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 30/39] qdev: qdev_create(), qdev_try_create() are now unused, drop Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 31/39] auxbus: Rename aux_init_bus() to aux_bus_init() Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 32/39] auxbus: New aux_bus_realize(), pairing with aux_bus_init() Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 33/39] auxbus: Convert a use of qdev_set_parent_bus() Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 34/39] auxbus: Eliminate aux_create_slave() Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 35/39] qom: Tidy up a few object_initialize_child() calls Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 36/39] qom: Less verbose object_initialize_child() Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 37/39] macio: Convert use of qdev_set_parent_bus() Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 38/39] macio: Eliminate macio_init_child_obj() Markus Armbruster
2020-06-09 16:39 ` [PATCH v3 39/39] sysbus: Drop useless OBJECT() in sysbus_init_child_obj() calls Markus Armbruster
2020-06-09 16:40 ` [PATCH v3 00/39] qdev: Rework how we plug into the parent bus Markus Armbruster
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200609163932.1566209-21-armbru@redhat.com \
--to=armbru@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).