diff options
author | Andreas Färber <afaerber@suse.de> | 2013-06-06 15:41:09 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2013-06-24 08:23:10 +0200 |
commit | 08f4c90b2887a4499a2f199cf9410308f8ed298c (patch) | |
tree | 11b63974117015e279965f5db463bacc9c50432f /hw/usb/hcd-ehci.h | |
parent | 576156ffed72ab4feb0b752979db86ff8759a2a1 (diff) | |
download | qemu-08f4c90b2887a4499a2f199cf9410308f8ed298c.zip qemu-08f4c90b2887a4499a2f199cf9410308f8ed298c.tar.gz qemu-08f4c90b2887a4499a2f199cf9410308f8ed298c.tar.bz2 |
usb/hcd-ehci-sysbus: Convert to QOM realize
The SysBus qdev initfn merely calls SysBusDeviceClass::init, so we can
replace it with a realizefn already. This avoids getting into any initfn
ambiguity with the upcoming Faraday EHCI implementation.
Rename internal usb_ehci_initfn() to usb_ehci_realize() to allow to
return Errors from common initialization code as well.
Signed-off-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/usb/hcd-ehci.h')
-rw-r--r-- | hw/usb/hcd-ehci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb/hcd-ehci.h b/hw/usb/hcd-ehci.h index 2fcb92f..15c7630 100644 --- a/hw/usb/hcd-ehci.h +++ b/hw/usb/hcd-ehci.h @@ -322,7 +322,7 @@ struct EHCIState { extern const VMStateDescription vmstate_ehci; -void usb_ehci_initfn(EHCIState *s, DeviceState *dev); +void usb_ehci_realize(EHCIState *s, DeviceState *dev, Error **errp); #define TYPE_PCI_EHCI "pci-ehci-usb" #define PCI_EHCI(obj) OBJECT_CHECK(EHCIPCIState, (obj), TYPE_PCI_EHCI) |