summaryrefslogtreecommitdiffstats
path: root/drivers/power/supply/max8925_power.c
diff options
context:
space:
mode:
authorGustavo A. R. Silva <gustavo@embeddedor.com>2018-10-04 15:56:36 +0200
committerSebastian Reichel <sebastian.reichel@collabora.com>2018-10-21 21:33:35 +0200
commitcfb347979e71d3ce6be59a988b3357f541c9eacf (patch)
tree13f9c3aabb2ca356f129c8b18d3cd7fbbe280605 /drivers/power/supply/max8925_power.c
parent415d602b226b3ed7b24edd8f0c2bfc111684d2b1 (diff)
downloadlinux-cfb347979e71d3ce6be59a988b3357f541c9eacf.tar.bz2
power: max8925: mark expected switch fall-through
In preparation to enabling -Wimplicit-fallthrough, mark switch cases where we are expecting to fall through. Addresses-Coverity-ID: 201510 ("Missing break in switch") Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Diffstat (limited to 'drivers/power/supply/max8925_power.c')
-rw-r--r--drivers/power/supply/max8925_power.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/power/supply/max8925_power.c b/drivers/power/supply/max8925_power.c
index 3b94620ce5c1..39b4d5b6ac39 100644
--- a/drivers/power/supply/max8925_power.c
+++ b/drivers/power/supply/max8925_power.c
@@ -124,6 +124,7 @@ static irqreturn_t max8925_charger_handler(int irq, void *data)
case MAX8925_IRQ_VCHG_THM_OK_F:
/* Battery is not ready yet */
dev_dbg(chip->dev, "Battery temperature is out of range\n");
+ /* Fall through */
case MAX8925_IRQ_VCHG_DC_OVP:
dev_dbg(chip->dev, "Error detection\n");
__set_charger(info, 0);