[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 7/8] qdev: convert es1370.
From: |
Gerd Hoffmann |
Subject: |
[Qemu-devel] [PATCH 7/8] qdev: convert es1370. |
Date: |
Tue, 30 Jun 2009 11:26:01 +0200 |
Signed-off-by: Gerd Hoffmann <address@hidden>
---
hw/es1370.c | 41 ++++++++++++++++++++++-------------------
1 files changed, 22 insertions(+), 19 deletions(-)
diff --git a/hw/es1370.c b/hw/es1370.c
index f730766..9e860f9 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);
+
--
1.6.2.5
[Qemu-devel] [PATCH 6/8] qdev/pci: misc fixes., Gerd Hoffmann, 2009/06/30
[Qemu-devel] [PATCH 2/8] qdev: replace bus_type enum with bus_info struct., Gerd Hoffmann, 2009/06/30
[Qemu-devel] [PATCH 5/8] qdev/core: add monitor command to list all drivers, Gerd Hoffmann, 2009/06/30
[Qemu-devel] [PATCH 7/8] qdev: convert es1370.,
Gerd Hoffmann <=
[Qemu-devel] [PATCH 1/8] qdev: update pci device registration., Gerd Hoffmann, 2009/06/30
[Qemu-devel] [PATCH 8/8] qdev: convert ac97., Gerd Hoffmann, 2009/06/30
[Qemu-devel] [PATCH 0/7] qdev patches, batch #1, Gerd Hoffmann, 2009/06/30
- [Qemu-devel] [PATCH 4/7] qdev/core: add monitor command to list all drivers, Gerd Hoffmann, 2009/06/30
- [Qemu-devel] [PATCH 3/7] qdev: remove DeviceType, Gerd Hoffmann, 2009/06/30
- [Qemu-devel] [PATCH 2/7] qdev: replace bus_type enum with bus_info struct., Gerd Hoffmann, 2009/06/30
- [Qemu-devel] [PATCH 5/7] qdev/pci: misc fixes., Gerd Hoffmann, 2009/06/30
- [Qemu-devel] [PATCH 1/7] qdev: update pci device registration., Gerd Hoffmann, 2009/06/30
- [Qemu-devel] [PATCH 7/7] qdev: convert ac97., Gerd Hoffmann, 2009/06/30