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

Commit 25451e5c authored by Peter Griffin's avatar Peter Griffin Committed by Kishon Vijay Abraham I
Browse files

phy: phy-spear1340-miphy: Use module_platform_driver to register driver.



Using the module_platform_driver macro to register the driver as this gets
rid of a lot of the boilerplate code.

Also remove .owner field as this gets overridden in __platform_driver_register.

Signed-off-by: default avatarPeter Griffin <peter.griffin@linaro.org>
Signed-off-by: default avatarKishon Vijay Abraham I <kishon@ti.com>
parent 7e65e9c9
Loading
Loading
Loading
Loading
+1 −12
Original line number Diff line number Diff line
@@ -282,23 +282,12 @@ static struct platform_driver spear1340_miphy_driver = {
	.probe		= spear1340_miphy_probe,
	.driver = {
		.name = "spear1340-miphy",
		.owner = THIS_MODULE,
		.pm = &spear1340_miphy_pm_ops,
		.of_match_table = of_match_ptr(spear1340_miphy_of_match),
	},
};

static int __init spear1340_miphy_phy_init(void)
{
	return platform_driver_register(&spear1340_miphy_driver);
}
module_init(spear1340_miphy_phy_init);

static void __exit spear1340_miphy_phy_exit(void)
{
	platform_driver_unregister(&spear1340_miphy_driver);
}
module_exit(spear1340_miphy_phy_exit);
module_platform_driver(spear1340_miphy_driver);

MODULE_DESCRIPTION("ST SPEAR1340-MIPHY driver");
MODULE_AUTHOR("Pratyush Anand <pratyush.anand@st.com>");