mfd: mc13xxx: Make mc13xxx_common_exit() return void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Tue, 12 Oct 2021 15:39:33 +0000 (17:39 +0200)
committerLee Jones <lee.jones@linaro.org>
Fri, 5 Nov 2021 14:40:26 +0000 (14:40 +0000)
Up to now mc13xxx_common_exit() returns zero unconditionally. Make it
return void instead which makes it easier to see in the callers that
there is no error to handle.

Also the return value of i2c and spi remove callbacks is ignored anyway.

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/20211012153945.2651412-9-u.kleine-koenig@pengutronix.de
drivers/mfd/mc13xxx-core.c
drivers/mfd/mc13xxx-i2c.c
drivers/mfd/mc13xxx-spi.c
drivers/mfd/mc13xxx.h

index 1abe7432aad82a308d6b3d8f4c977e9a91964edd..8a4f1d90dcfd1c339521dede5a0e5e105ccd329a 100644 (file)
@@ -496,15 +496,13 @@ int mc13xxx_common_init(struct device *dev)
 }
 EXPORT_SYMBOL_GPL(mc13xxx_common_init);
 
-int mc13xxx_common_exit(struct device *dev)
+void mc13xxx_common_exit(struct device *dev)
 {
        struct mc13xxx *mc13xxx = dev_get_drvdata(dev);
 
        mfd_remove_devices(dev);
        regmap_del_irq_chip(mc13xxx->irq, mc13xxx->irq_data);
        mutex_destroy(&mc13xxx->lock);
-
-       return 0;
 }
 EXPORT_SYMBOL_GPL(mc13xxx_common_exit);
 
index 65b4dd8e5afbebc7cedffabe7f0b7c2b31e7e96b..fb937f66277e59ab5bae6249fc92b867868b9877 100644 (file)
@@ -87,7 +87,8 @@ static int mc13xxx_i2c_probe(struct i2c_client *client,
 
 static int mc13xxx_i2c_remove(struct i2c_client *client)
 {
-       return mc13xxx_common_exit(&client->dev);
+       mc13xxx_common_exit(&client->dev);
+       return 0;
 }
 
 static struct i2c_driver mc13xxx_i2c_driver = {
index 286ddcf5ddc650cd151fe8a9b699208cc8e62e65..4d8913d647e6345688ec23dd3b4009e96466cdcc 100644 (file)
@@ -168,7 +168,8 @@ static int mc13xxx_spi_probe(struct spi_device *spi)
 
 static int mc13xxx_spi_remove(struct spi_device *spi)
 {
-       return mc13xxx_common_exit(&spi->dev);
+       mc13xxx_common_exit(&spi->dev);
+       return 0;
 }
 
 static struct spi_driver mc13xxx_spi_driver = {
index ce6eec52e8eb11d2467f7eace881f2910c0d62ca..bd5ba9a0e14f75b877e4264ba44de911c7ee8e1c 100644 (file)
@@ -44,6 +44,6 @@ struct mc13xxx {
 };
 
 int mc13xxx_common_init(struct device *dev);
-int mc13xxx_common_exit(struct device *dev);
+void mc13xxx_common_exit(struct device *dev);
 
 #endif /* __DRIVERS_MFD_MC13XXX_H */