Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 98ef55f6 authored by Axel Lin's avatar Axel Lin Committed by John W. Linville
Browse files

net: rfkill: convert net/rfkill/* to use module_platform_driver()



This patch converts the drivers in net/rfkill/* to use the
module_platform_driver() macro which makes the code smaller and a bit
simpler.

Cc: "David S. Miller" <davem@davemloft.net>
Cc: "John W. Linville" <linville@tuxdriver.com>
Cc: Johannes Berg <johannes@sipsolutions.net>
Cc: Antonio Ospite <ospite@studenti.unina.it>
Cc: Rhyland Klein <rklein@nvidia.com>
Signed-off-by: default avatarAxel Lin <axel.lin@gmail.com>
Acked-by: default avatarRhyland Klein <rklein@nvidia.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 26482755
Loading
Loading
Loading
Loading
+1 −12
Original line number Diff line number Diff line
@@ -220,18 +220,7 @@ static struct platform_driver rfkill_gpio_driver = {
	},
};

static int __init rfkill_gpio_init(void)
{
	return platform_driver_register(&rfkill_gpio_driver);
}

static void __exit rfkill_gpio_exit(void)
{
	platform_driver_unregister(&rfkill_gpio_driver);
}

module_init(rfkill_gpio_init);
module_exit(rfkill_gpio_exit);
module_platform_driver(rfkill_gpio_driver);

MODULE_DESCRIPTION("gpio rfkill");
MODULE_AUTHOR("NVIDIA");
+1 −11
Original line number Diff line number Diff line
@@ -144,17 +144,7 @@ static struct platform_driver rfkill_regulator_driver = {
	},
};

static int __init rfkill_regulator_init(void)
{
	return platform_driver_register(&rfkill_regulator_driver);
}
module_init(rfkill_regulator_init);

static void __exit rfkill_regulator_exit(void)
{
	platform_driver_unregister(&rfkill_regulator_driver);
}
module_exit(rfkill_regulator_exit);
module_platform_driver(rfkill_regulator_driver);

MODULE_AUTHOR("Guiming Zhuo <gmzhuo@gmail.com>");
MODULE_AUTHOR("Antonio Ospite <ospite@studenti.unina.it>");