ASoC: tlv320aic32x4: Make aic32x4_remove() return void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Fri, 15 Oct 2021 07:11:13 +0000 (09:11 +0200)
committerMark Brown <broonie@kernel.org>
Mon, 18 Oct 2021 12:56:42 +0000 (13:56 +0100)
Up to now aic32x4_remove() 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>
Link: https://lore.kernel.org/r/20211015071113.2795767-1-u.kleine-koenig@pengutronix.de
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/tlv320aic32x4-i2c.c
sound/soc/codecs/tlv320aic32x4-spi.c
sound/soc/codecs/tlv320aic32x4.c
sound/soc/codecs/tlv320aic32x4.h

index 04ad3831136018ebaff4e50d96a109f05b2e6923..ed70e3d9baf241930d2d02080482e5a331dec882 100644 (file)
@@ -44,7 +44,9 @@ static int aic32x4_i2c_probe(struct i2c_client *i2c,
 
 static int aic32x4_i2c_remove(struct i2c_client *i2c)
 {
-       return aic32x4_remove(&i2c->dev);
+       aic32x4_remove(&i2c->dev);
+
+       return 0;
 }
 
 static const struct i2c_device_id aic32x4_i2c_id[] = {
index e81c72958a82cc9107111b2d520320402821d827..a8958cd1c69211f208d7061b936c574a51864a7b 100644 (file)
@@ -48,7 +48,9 @@ static int aic32x4_spi_probe(struct spi_device *spi)
 
 static int aic32x4_spi_remove(struct spi_device *spi)
 {
-       return aic32x4_remove(&spi->dev);
+       aic32x4_remove(&spi->dev);
+
+       return 0;
 }
 
 static const struct spi_device_id aic32x4_spi_id[] = {
index d39c7d52ecfd4522b591f44f4dfbbc98ef1c5f08..8f42fd7bc05392e2b777e516a6093b1515680b66 100644 (file)
@@ -1418,13 +1418,11 @@ err_disable_regulators:
 }
 EXPORT_SYMBOL(aic32x4_probe);
 
-int aic32x4_remove(struct device *dev)
+void aic32x4_remove(struct device *dev)
 {
        struct aic32x4_priv *aic32x4 = dev_get_drvdata(dev);
 
        aic32x4_disable_regulators(aic32x4);
-
-       return 0;
 }
 EXPORT_SYMBOL(aic32x4_remove);
 
index e9fd2e55d6c3b78fe0c392abd628b26f4cc20df8..4de5bd9e8cc5f327f65b51167b11364dba286423 100644 (file)
@@ -18,7 +18,7 @@ enum aic32x4_type {
 
 extern const struct regmap_config aic32x4_regmap_config;
 int aic32x4_probe(struct device *dev, struct regmap *regmap);
-int aic32x4_remove(struct device *dev);
+void aic32x4_remove(struct device *dev);
 int aic32x4_register_clocks(struct device *dev, const char *mclk_name);
 
 /* tlv320aic32x4 register space (in decimal to match datasheet) */