From 0d33d10613a1079f49414b0e2daa820cd59fe68a Mon Sep 17 00:00:00 2001 From: Ryan Long Date: Mon, 1 Mar 2021 16:33:10 -0500 Subject: pci_cfg_read.c: Fix Missing break in switch (CID #1399723) CID 1399723: Missing break in switch in pci_read_addressable(). Closes #4279 --- cpukit/libpci/pci_cfg_read.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cpukit/libpci/pci_cfg_read.c b/cpukit/libpci/pci_cfg_read.c index 07837431b0..3cb6f86ae5 100644 --- a/cpukit/libpci/pci_cfg_read.c +++ b/cpukit/libpci/pci_cfg_read.c @@ -73,6 +73,7 @@ static int pci_read_addressable(struct pci_dev *dev, struct pci_res *res) break; case PCI_RES_MEM: range1 = &bus->dev.resources[BRIDGE_RES_MEM]; + /* Fall through */ default: case PCI_RES_MEMIO: range0 = &bus->dev.resources[BRIDGE_RES_MEMIO]; -- cgit v1.2.3