nubus: Make struct nubus_driver::remove return void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Tue, 27 Jul 2021 08:08:37 +0000 (10:08 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 28 Jul 2021 13:33:59 +0000 (15:33 +0200)
The nubus core ignores the return value of the remove callback (in
nubus_device_remove()) and all implementers return 0 anyway.

So make it impossible for future drivers to return an unused error code
by changing the remove prototype to return void.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: Finn Thain <fthain@linux-m68k.org>
Link: https://lore.kernel.org/r/20210727080840.3550927-3-u.kleine-koenig@pengutronix.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/ethernet/8390/mac8390.c
drivers/net/ethernet/natsemi/macsonic.c
include/linux/nubus.h

index 9aac711..91b04ab 100644 (file)
@@ -428,13 +428,12 @@ out:
        return err;
 }
 
-static int mac8390_device_remove(struct nubus_board *board)
+static void mac8390_device_remove(struct nubus_board *board)
 {
        struct net_device *dev = nubus_get_drvdata(board);
 
        unregister_netdev(dev);
        free_netdev(dev);
-       return 0;
 }
 
 static struct nubus_driver mac8390_driver = {
index 2289e1f..8709d70 100644 (file)
@@ -603,7 +603,7 @@ out:
        return err;
 }
 
-static int mac_sonic_nubus_remove(struct nubus_board *board)
+static void mac_sonic_nubus_remove(struct nubus_board *board)
 {
        struct net_device *ndev = nubus_get_drvdata(board);
        struct sonic_local *lp = netdev_priv(ndev);
@@ -613,8 +613,6 @@ static int mac_sonic_nubus_remove(struct nubus_board *board)
                          SIZEOF_SONIC_DESC * SONIC_BUS_SCALE(lp->dma_bitmode),
                          lp->descriptors, lp->descriptors_laddr);
        free_netdev(ndev);
-
-       return 0;
 }
 
 static struct nubus_driver mac_sonic_nubus_driver = {
index eba50b0..392fc6c 100644 (file)
@@ -86,7 +86,7 @@ extern struct list_head nubus_func_rsrcs;
 struct nubus_driver {
        struct device_driver driver;
        int (*probe)(struct nubus_board *board);
-       int (*remove)(struct nubus_board *board);
+       void (*remove)(struct nubus_board *board);
 };
 
 extern struct bus_type nubus_bus_type;