1
0
Fork 0

vmbus: add missing breaks

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
wifi-calibration
Gerd Hoffmann 2014-02-24 14:17:08 +01:00 committed by Greg Kroah-Hartman
parent 35efc5a425
commit 4eb923f878
1 changed files with 2 additions and 0 deletions

View File

@ -899,10 +899,12 @@ static acpi_status vmbus_walk_resources(struct acpi_resource *res, void *ctx)
switch (res->type) {
case ACPI_RESOURCE_TYPE_IRQ:
irq = res->data.irq.interrupts[0];
break;
case ACPI_RESOURCE_TYPE_ADDRESS64:
hyperv_mmio_start = res->data.address64.minimum;
hyperv_mmio_size = res->data.address64.address_length;
break;
}
return AE_OK;