]> git.proxmox.com Git - qemu.git/commitdiff
acpi_piix4: Remove PCI_RMV_BASE write code
authorAlex Williamson <alex.williamson@redhat.com>
Thu, 5 Apr 2012 17:07:21 +0000 (11:07 -0600)
committerMichael S. Tsirkin <mst@redhat.com>
Sun, 15 Apr 2012 09:17:23 +0000 (12:17 +0300)
Clarify this register as read-only and remove write code.  No
change in existing behavior.

Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
docs/specs/acpi_pci_hotplug.txt
hw/acpi_piix4.c

index 1e2c8a22eb5b64d28dd9c043dba491b6505c0764..1883d630613e560c9e72d81cf3d2d0b770f45b70 100644 (file)
@@ -34,4 +34,4 @@ PCI removability status (IO port 0xae0c-0xae0f, 4-byte access):
 -----------------------------------------------
 
 Used by ACPI BIOS _RMV method to indicate removability status to OS. One
-bit per slot.
+bit per slot.  Read-only
index 0e7af51063af1d4f64059f75da40a535ccb4402c..5d3b0ba11e3de4063a937a8f89bd300348b7a02b 100644 (file)
@@ -531,11 +531,6 @@ static uint32_t pcirmv_read(void *opaque, uint32_t addr)
     return s->pci0_hotplug_enable;
 }
 
-static void pcirmv_write(void *opaque, uint32_t addr, uint32_t val)
-{
-    return;
-}
-
 static int piix4_device_hotplug(DeviceState *qdev, PCIDevice *dev,
                                 PCIHotplugState state);
 
@@ -552,7 +547,6 @@ static void piix4_acpi_system_hot_add_init(PCIBus *bus, PIIX4PMState *s)
     register_ioport_write(PCI_EJ_BASE, 4, 4, pciej_write, s);
     register_ioport_read(PCI_EJ_BASE, 4, 4,  pciej_read, s);
 
-    register_ioport_write(PCI_RMV_BASE, 4, 4, pcirmv_write, s);
     register_ioport_read(PCI_RMV_BASE, 4, 4,  pcirmv_read, s);
 
     pci_bus_hotplug(bus, piix4_device_hotplug, &s->dev.qdev);