]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
net: ks8851: Make ks8851_remove_common() return void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Fri, 15 Oct 2021 06:56:14 +0000 (08:56 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 18 Oct 2021 11:59:12 +0000 (12:59 +0100)
Up to now ks8851_remove_common() 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 platform and spi remove callbacks is ignored
anyway.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/micrel/ks8851.h
drivers/net/ethernet/micrel/ks8851_common.c
drivers/net/ethernet/micrel/ks8851_par.c
drivers/net/ethernet/micrel/ks8851_spi.c

index e2eb0caeac8216980fad9b8eceb480d92d6df60f..6f34a61739b6622d86df007767374193528859f9 100644 (file)
@@ -427,7 +427,7 @@ struct ks8851_net {
 
 int ks8851_probe_common(struct net_device *netdev, struct device *dev,
                        int msg_en);
-int ks8851_remove_common(struct device *dev);
+void ks8851_remove_common(struct device *dev);
 int ks8851_suspend(struct device *dev);
 int ks8851_resume(struct device *dev);
 
index 2c4e5e602be7f0bf34906b77b19b0b2b6d2dfebd..499258b8662a52505459d2f3a1df335584320e04 100644 (file)
@@ -1247,7 +1247,7 @@ err_reg_io:
 }
 EXPORT_SYMBOL_GPL(ks8851_probe_common);
 
-int ks8851_remove_common(struct device *dev)
+void ks8851_remove_common(struct device *dev)
 {
        struct ks8851_net *priv = dev_get_drvdata(dev);
 
@@ -1261,8 +1261,6 @@ int ks8851_remove_common(struct device *dev)
                gpio_set_value(priv->gpio, 0);
        regulator_disable(priv->vdd_reg);
        regulator_disable(priv->vdd_io);
-
-       return 0;
 }
 EXPORT_SYMBOL_GPL(ks8851_remove_common);
 
index 2e8fcce50f9d17c5591c3ed8c10d961f08208a46..2e25798c610eed8f167710d53673504c00eff660 100644 (file)
@@ -327,7 +327,9 @@ static int ks8851_probe_par(struct platform_device *pdev)
 
 static int ks8851_remove_par(struct platform_device *pdev)
 {
-       return ks8851_remove_common(&pdev->dev);
+       ks8851_remove_common(&pdev->dev);
+
+       return 0;
 }
 
 static const struct of_device_id ks8851_match_table[] = {
index 479406ecbaa300f6a3682a7d4351e1d8396dc4d8..0303e727e99f9650f6d1f4afbce4d73e3ad6cf9e 100644 (file)
@@ -454,7 +454,9 @@ static int ks8851_probe_spi(struct spi_device *spi)
 
 static int ks8851_remove_spi(struct spi_device *spi)
 {
-       return ks8851_remove_common(&spi->dev);
+       ks8851_remove_common(&spi->dev);
+
+       return 0;
 }
 
 static const struct of_device_id ks8851_match_table[] = {