Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4eb923f8 authored by Gerd Hoffmann's avatar Gerd Hoffmann Committed by Greg Kroah-Hartman
Browse files

vmbus: add missing breaks

parent 35efc5a4
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -899,10 +899,12 @@ static acpi_status vmbus_walk_resources(struct acpi_resource *res, void *ctx)
	switch (res->type) {
	switch (res->type) {
	case ACPI_RESOURCE_TYPE_IRQ:
	case ACPI_RESOURCE_TYPE_IRQ:
		irq = res->data.irq.interrupts[0];
		irq = res->data.irq.interrupts[0];
		break;


	case ACPI_RESOURCE_TYPE_ADDRESS64:
	case ACPI_RESOURCE_TYPE_ADDRESS64:
		hyperv_mmio_start = res->data.address64.minimum;
		hyperv_mmio_start = res->data.address64.minimum;
		hyperv_mmio_size = res->data.address64.address_length;
		hyperv_mmio_size = res->data.address64.address_length;
		break;
	}
	}


	return AE_OK;
	return AE_OK;