summaryrefslogtreecommitdiffstats
path: root/drivers/vfio/pci
diff options
context:
space:
mode:
authorGustavo A. R. Silva2018-07-10 00:53:09 +0200
committerAlex Williamson2018-08-06 20:22:54 +0200
commit544c05a60aef7de34ef60eebaf46582ca2bf05f9 (patch)
tree5888f06dc072d43617f2bd694a36cc80d10a5062 /drivers/vfio/pci
parentLinux 4.18-rc8 (diff)
downloadkernel-qcow2-linux-544c05a60aef7de34ef60eebaf46582ca2bf05f9.tar.gz
kernel-qcow2-linux-544c05a60aef7de34ef60eebaf46582ca2bf05f9.tar.xz
kernel-qcow2-linux-544c05a60aef7de34ef60eebaf46582ca2bf05f9.zip
vfio: Mark expected switch fall-throughs
In preparation to enabling -Wimplicit-fallthrough, mark switch cases where we are expecting to fall through. Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'drivers/vfio/pci')
-rw-r--r--drivers/vfio/pci/vfio_pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/vfio/pci/vfio_pci.c b/drivers/vfio/pci/vfio_pci.c
index 125b58eff936..7fe2748ba101 100644
--- a/drivers/vfio/pci/vfio_pci.c
+++ b/drivers/vfio/pci/vfio_pci.c
@@ -789,7 +789,7 @@ static long vfio_pci_ioctl(void *device_data,
case VFIO_PCI_ERR_IRQ_INDEX:
if (pci_is_pcie(vdev->pdev))
break;
- /* pass thru to return error */
+ /* fall through */
default:
return -EINVAL;
}