iommu/arm-smmu: Mark expected switch fall-through
authorAnders Roxell <anders.roxell@linaro.org>
Tue, 30 Jul 2019 15:20:11 +0000 (17:20 +0200)
committerJoerg Roedel <jroedel@suse.de>
Tue, 6 Aug 2019 15:26:38 +0000 (17:26 +0200)
commit11f4fe9ba3c85a4efac7ec25e75056a9b612d9da
treeccfcda1ca54dde4d033f1e98ceda4b2176082a84
parent8af23fad626173eed7cc02733874d4124049bd5e
iommu/arm-smmu: Mark expected switch fall-through

Now that -Wimplicit-fallthrough is passed to GCC by default, the
following warning shows up:

../drivers/iommu/arm-smmu-v3.c: In function ‘arm_smmu_write_strtab_ent’:
../drivers/iommu/arm-smmu-v3.c:1189:7: warning: this statement may fall
 through [-Wimplicit-fallthrough=]
    if (disable_bypass)
       ^
../drivers/iommu/arm-smmu-v3.c:1191:3: note: here
   default:
   ^~~~~~~

Rework so that the compiler doesn't warn about fall-through. Make it
clearer by calling 'BUG_ON()' when disable_bypass is set, and always
'break;'

Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
Acked-by: Will Deacon <will@kernel.org>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
drivers/iommu/arm-smmu-v3.c