diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2014-02-24 08:17:08 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-02-24 19:15:05 -0500 |
commit | 4eb923f8787fabbbc450364d34ebe69813448862 (patch) | |
tree | 959eb8987c7d25371fb146479827243f258fe862 /drivers/hv/vmbus_drv.c | |
parent | 35efc5a425e3db676b3d1ab9f23705a3977cfdcd (diff) |
vmbus: add missing breaks
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/hv/vmbus_drv.c')
-rw-r--r-- | drivers/hv/vmbus_drv.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/hv/vmbus_drv.c b/drivers/hv/vmbus_drv.c index b37c91b6ba80..2352ae481e87 100644 --- a/drivers/hv/vmbus_drv.c +++ b/drivers/hv/vmbus_drv.c | |||
@@ -899,10 +899,12 @@ static acpi_status vmbus_walk_resources(struct acpi_resource *res, void *ctx) | |||
899 | switch (res->type) { | 899 | switch (res->type) { |
900 | case ACPI_RESOURCE_TYPE_IRQ: | 900 | case ACPI_RESOURCE_TYPE_IRQ: |
901 | irq = res->data.irq.interrupts[0]; | 901 | irq = res->data.irq.interrupts[0]; |
902 | break; | ||
902 | 903 | ||
903 | case ACPI_RESOURCE_TYPE_ADDRESS64: | 904 | case ACPI_RESOURCE_TYPE_ADDRESS64: |
904 | hyperv_mmio_start = res->data.address64.minimum; | 905 | hyperv_mmio_start = res->data.address64.minimum; |
905 | hyperv_mmio_size = res->data.address64.address_length; | 906 | hyperv_mmio_size = res->data.address64.address_length; |
907 | break; | ||
906 | } | 908 | } |
907 | 909 | ||
908 | return AE_OK; | 910 | return AE_OK; |