aboutsummaryrefslogtreecommitdiff
path: root/drivers/mfd/twl-core.h
diff options
context:
space:
mode:
authorGravatar Uwe Kleine-König <u.kleine-koenig@pengutronix.de> 2022-01-13 11:14:29 +0100
committerGravatar Lee Jones <lee.jones@linaro.org> 2022-04-28 17:24:10 +0100
commitb6f29431820d16de4b16c465c44355d4aa522149 (patch)
tree42461467905ae3ec981cb9c92db1dc0eda7c001e /drivers/mfd/twl-core.h
parentdt-bindings: mfd: samsung,exynos5433-lpass: Fix 'dma-channels/requests' prope... (diff)
downloadlinux-b6f29431820d16de4b16c465c44355d4aa522149.tar.gz
linux-b6f29431820d16de4b16c465c44355d4aa522149.tar.bz2
linux-b6f29431820d16de4b16c465c44355d4aa522149.zip
mfd: twl6030: Make twl6030_exit_irq() return void
This function returns 0 unconditionally, so there is no benefit in returning a value at all and make the caller do error checking. Also the caller (twl_remove()) cannot do anything sensible with an error code. Passing it up the call stack isn't a good option because the i2c core ignores error codes (apart from emitting an error message). Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Lee Jones <lee.jones@linaro.org> Link: https://lore.kernel.org/r/20220113101430.12869-2-u.kleine-koenig@pengutronix.de
Diffstat (limited to 'drivers/mfd/twl-core.h')
-rw-r--r--drivers/mfd/twl-core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/twl-core.h b/drivers/mfd/twl-core.h
index 6f96c2009a9f..1b916d2e8752 100644
--- a/drivers/mfd/twl-core.h
+++ b/drivers/mfd/twl-core.h
@@ -3,7 +3,7 @@
#define __TWL_CORE_H__
extern int twl6030_init_irq(struct device *dev, int irq_num);
-extern int twl6030_exit_irq(void);
+extern void twl6030_exit_irq(void);
extern int twl4030_init_irq(struct device *dev, int irq_num);
extern int twl4030_exit_irq(void);
extern int twl4030_init_chip_irq(const char *chip);