Use the module_switch_driver helper macro to declare the driver and thus reduce boilerplate.
Signed-off-by: Vivien Didelot <[email protected]> --- drivers/net/dsa/bcm_sf2.c | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/drivers/net/dsa/bcm_sf2.c b/drivers/net/dsa/bcm_sf2.c index cedb572..2b438fb 100644 --- a/drivers/net/dsa/bcm_sf2.c +++ b/drivers/net/dsa/bcm_sf2.c @@ -1071,19 +1071,7 @@ static struct dsa_switch_driver bcm_sf2_switch_driver = { .port_stp_update = bcm_sf2_sw_br_set_stp_state, }; -static int __init bcm_sf2_init(void) -{ - register_switch_driver(&bcm_sf2_switch_driver); - - return 0; -} -module_init(bcm_sf2_init); - -static void __exit bcm_sf2_exit(void) -{ - unregister_switch_driver(&bcm_sf2_switch_driver); -} -module_exit(bcm_sf2_exit); +module_switch_driver(bcm_sf2_switch_driver); MODULE_AUTHOR("Broadcom Corporation"); MODULE_DESCRIPTION("Driver for Broadcom Starfighter 2 ethernet switch chip"); -- 2.3.7 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

