From: Jared Rossi <[email protected]> Add a break after calling the PCI specific notification function instead of falling through to the default case.
Signed-off-by: Jared Rossi <[email protected]> --- pc-bios/s390-ccw/virtio.c | 1 + 1 file changed, 1 insertion(+) diff --git a/pc-bios/s390-ccw/virtio.c b/pc-bios/s390-ccw/virtio.c index a448dc96e2..7883871033 100644 --- a/pc-bios/s390-ccw/virtio.c +++ b/pc-bios/s390-ccw/virtio.c @@ -115,6 +115,7 @@ bool vring_notify(VRing *vr) break; case S390_IPL_TYPE_PCI: vr->cookie = virtio_pci_notify(vr->id); + break; default: return 1; } -- 2.54.0
