mirror of https://github.com/xqemu/xqemu.git
pcihp: replace enable|disable_device() with oneliners
enable_device() and disable_device() functions aren't reused anywere, so replace them with respective oneliners at call sites. Signed-off-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
5a2223ca26
commit
8f5001f9ed
|
@ -177,16 +177,6 @@ void acpi_pcihp_reset(AcpiPciHpState *s)
|
||||||
acpi_pcihp_update(s);
|
acpi_pcihp_update(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void enable_device(AcpiPciHpState *s, unsigned bsel, int slot)
|
|
||||||
{
|
|
||||||
s->acpi_pcihp_pci_status[bsel].up |= (1U << slot);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void disable_device(AcpiPciHpState *s, unsigned bsel, int slot)
|
|
||||||
{
|
|
||||||
s->acpi_pcihp_pci_status[bsel].down |= (1U << slot);
|
|
||||||
}
|
|
||||||
|
|
||||||
int acpi_pcihp_device_hotplug(AcpiPciHpState *s, PCIDevice *dev,
|
int acpi_pcihp_device_hotplug(AcpiPciHpState *s, PCIDevice *dev,
|
||||||
PCIHotplugState state)
|
PCIHotplugState state)
|
||||||
{
|
{
|
||||||
|
@ -204,9 +194,9 @@ int acpi_pcihp_device_hotplug(AcpiPciHpState *s, PCIDevice *dev,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (state == PCI_HOTPLUG_ENABLED) {
|
if (state == PCI_HOTPLUG_ENABLED) {
|
||||||
enable_device(s, bsel, slot);
|
s->acpi_pcihp_pci_status[bsel].up |= (1U << slot);
|
||||||
} else {
|
} else {
|
||||||
disable_device(s, bsel, slot);
|
s->acpi_pcihp_pci_status[bsel].down |= (1U << slot);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue