aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorGustavo A. R. Silva <gustavo@embeddedor.com>2019-08-20 16:03:09 -0500
committerGustavo A. R. Silva <gustavo@embeddedor.com>2019-08-20 19:43:47 -0500
commit93cbcf5d22bbe6f2ecf64765d5f6085beceb3ee8 (patch)
tree0da01f438c914a3c641717acb5a5c882c47af539 /arch
parentpower: supply: ab8500_charger: Mark expected switch fall-through (diff)
downloadlinux-dev-93cbcf5d22bbe6f2ecf64765d5f6085beceb3ee8.tar.xz
linux-dev-93cbcf5d22bbe6f2ecf64765d5f6085beceb3ee8.zip
MIPS: Octeon: Mark expected switch fall-through
Mark switch cases where we are expecting to fall through. Fix the following warning (Building: cavium_octeon_defconfig mips): arch/mips/include/asm/octeon/cvmx-sli-defs.h:47:6: warning: this statement may fall through [-Wimplicit-fallthrough=] Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/mips/include/asm/octeon/cvmx-sli-defs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/include/asm/octeon/cvmx-sli-defs.h b/arch/mips/include/asm/octeon/cvmx-sli-defs.h
index 52cf96ea43e5..cbc7cdae1c6a 100644
--- a/arch/mips/include/asm/octeon/cvmx-sli-defs.h
+++ b/arch/mips/include/asm/octeon/cvmx-sli-defs.h
@@ -46,6 +46,7 @@ static inline uint64_t CVMX_SLI_PCIE_MSI_RCV_FUNC(void)
case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
return 0x0000000000003CB0ull;
+ /* Else, fall through */
default:
return 0x0000000000023CB0ull;
}