aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/pinctrl
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2022-09-08 17:21:34 +0300
committerLinus Walleij <linus.walleij@linaro.org>2022-09-09 10:01:52 +0200
commite662d349ab6601ffaadd3403bca2775c8ffc050d (patch)
tree4b7bdc9aa16cbcee36cf3769090827d28792bab6 /drivers/pinctrl
parentpinctrl: pistachio: Correct the fwnode_irq_get() return value check (diff)
downloadwireguard-linux-e662d349ab6601ffaadd3403bca2775c8ffc050d.tar.xz
wireguard-linux-e662d349ab6601ffaadd3403bca2775c8ffc050d.zip
pinctrl: cy8c95x0: Use 'default' in all switch-cases (part 2)
Move the default values to the 'default' case in the switches. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/20220908142134.59068-1-andriy.shevchenko@linux.intel.com Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl')
-rw-r--r--drivers/pinctrl/pinctrl-cy8c95x0.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pinctrl/pinctrl-cy8c95x0.c b/drivers/pinctrl/pinctrl-cy8c95x0.c
index 1335d07822f9..79f73d364f3f 100644
--- a/drivers/pinctrl/pinctrl-cy8c95x0.c
+++ b/drivers/pinctrl/pinctrl-cy8c95x0.c
@@ -357,9 +357,9 @@ static bool cy8c95x0_volatile_register(struct device *dev, unsigned int reg)
case CY8C95X0_DRV_PP_SLOW:
case CY8C95X0_DRV_HIZ:
return true;
+ default:
+ return false;
}
-
- return false;
}
static bool cy8c95x0_precious_register(struct device *dev, unsigned int reg)