Skip to content

Commit 85385a5

Browse files
Uwe Kleine-Königgregkh
Uwe Kleine-König
authored andcommitted
misc: ad525x_dpot: Make ad_dpot_remove() return void
Up to now ad_dpot_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 <[email protected]> Link: https://lore.kernel.org/r/[email protected] Acked-by: Michael Hennerich <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 4df4946 commit 85385a5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

drivers/misc/ad525x_dpot-i2c.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ static int ad_dpot_i2c_probe(struct i2c_client *client,
6969

7070
static int ad_dpot_i2c_remove(struct i2c_client *client)
7171
{
72-
return ad_dpot_remove(&client->dev);
72+
ad_dpot_remove(&client->dev);
73+
return 0;
7374
}
7475

7576
static const struct i2c_device_id ad_dpot_id[] = {

drivers/misc/ad525x_dpot-spi.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ static int ad_dpot_spi_probe(struct spi_device *spi)
9292

9393
static int ad_dpot_spi_remove(struct spi_device *spi)
9494
{
95-
return ad_dpot_remove(&spi->dev);
95+
ad_dpot_remove(&spi->dev);
96+
return 0;
9697
}
9798

9899
static const struct spi_device_id ad_dpot_spi_id[] = {

drivers/misc/ad525x_dpot.c

+1-3
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,7 @@ int ad_dpot_probe(struct device *dev,
743743
}
744744
EXPORT_SYMBOL(ad_dpot_probe);
745745

746-
int ad_dpot_remove(struct device *dev)
746+
void ad_dpot_remove(struct device *dev)
747747
{
748748
struct dpot_data *data = dev_get_drvdata(dev);
749749
int i;
@@ -753,8 +753,6 @@ int ad_dpot_remove(struct device *dev)
753753
ad_dpot_remove_files(dev, data->feat, i);
754754

755755
kfree(data);
756-
757-
return 0;
758756
}
759757
EXPORT_SYMBOL(ad_dpot_remove);
760758

drivers/misc/ad525x_dpot.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,6 @@ struct ad_dpot_bus_data {
209209

210210
int ad_dpot_probe(struct device *dev, struct ad_dpot_bus_data *bdata,
211211
unsigned long devid, const char *name);
212-
int ad_dpot_remove(struct device *dev);
212+
void ad_dpot_remove(struct device *dev);
213213

214214
#endif

0 commit comments

Comments
 (0)