From: Tim Deegan Date: Thu, 12 Sep 2013 10:57:01 +0000 (+0100) Subject: passthrough/amd: Missing 'break' X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~6331 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=72fa4fdf647ba99ecaf39589a93cde8dd36eed3c;p=xen.git passthrough/amd: Missing 'break' Coverity CID 1055502 Signed-off-by: Tim Deegan Reviewed-by: Andrew Cooper Acked-by: Suravee Suthikulpanit --- diff --git a/xen/drivers/passthrough/amd/iommu_guest.c b/xen/drivers/passthrough/amd/iommu_guest.c index 85f23610a4..952600a9c6 100644 --- a/xen/drivers/passthrough/amd/iommu_guest.c +++ b/xen/drivers/passthrough/amd/iommu_guest.c @@ -728,6 +728,7 @@ static void guest_iommu_mmio_write64(struct guest_iommu *iommu, break; case IOMMU_EVENT_LOG_BASE_LOW_OFFSET: u64_to_reg(&iommu->event_log.reg_base, val); + break; case IOMMU_PPR_LOG_BASE_LOW_OFFSET: u64_to_reg(&iommu->ppr_log.reg_base, val); break;