diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2009-06-30 14:12:12 +0200 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2009-07-09 13:07:03 +0100 |
commit | 6806e59567ab7f6bda3e369468518089a8822b57 (patch) | |
tree | c71523e77a8037989fccae9c04fb68e02eb092c9 /hw | |
parent | 16eaedf2668e9b347a59d73346fcc4c764c58348 (diff) |
qdev: convert es1370.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/es1370.c | 41 |
1 files changed, 22 insertions, 19 deletions
diff --git a/hw/es1370.c b/hw/es1370.c index f730766364..9e860f9b08 100644 --- a/hw/es1370.c +++ b/hw/es1370.c @@ -1005,27 +1005,12 @@ static void es1370_on_reset (void *opaque) es1370_reset (s); } -int es1370_init (PCIBus *bus) +static void es1370_initfn(PCIDevice *dev) { - PCIES1370State *d; - ES1370State *s; - uint8_t *c; - - if (!bus) { - dolog ("No PCI bus\n"); - return -1; - } - - d = (PCIES1370State *) pci_register_device (bus, "ES1370", - sizeof (PCIES1370State), - -1, NULL, NULL); - - if (!d) { - AUD_log (NULL, "Failed to register PCI device for ES1370\n"); - return -1; - } + PCIES1370State *d = DO_UPCAST(PCIES1370State, dev, dev); + ES1370State *s = &d->es1370; + uint8_t *c = d->dev.config; - c = d->dev.config; pci_config_set_vendor_id (c, PCI_VENDOR_ID_ENSONIQ); pci_config_set_device_id (c, PCI_DEVICE_ID_ENSONIQ_ES1370); c[0x07] = 2 << 1; @@ -1059,5 +1044,23 @@ int es1370_init (PCIBus *bus) AUD_register_card ("es1370", &s->card); es1370_reset (s); +} + +int es1370_init (PCIBus *bus) +{ + pci_create_simple(bus, -1, "ES1370"); return 0; } + +static PCIDeviceInfo es1370_info = { + .qdev.name = "ES1370", + .qdev.size = sizeof(PCIES1370State), + .init = es1370_initfn, +}; + +static void es1370_register(void) +{ + pci_qdev_register(&es1370_info); +} +device_init(es1370_register); + |