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

Commit 40c935ae authored by Srinivas Kandagatla's avatar Srinivas Kandagatla Committed by Benjamin Herrenschmidt
Browse files

powerpc/sysdev: Use module_platform_driver macro



This patch removes some code duplication by using
module_platform_driver.

Signed-off-by: default avatarSrinivas Kandagatla <srinivas.kandagatla@st.com>
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
parent b2bb65f6
Loading
Loading
Loading
Loading
+1 −12
Original line number Diff line number Diff line
@@ -214,18 +214,7 @@ static struct platform_driver pmi_of_platform_driver = {
		.of_match_table = pmi_match,
	},
};

static int __init pmi_module_init(void)
{
	return platform_driver_register(&pmi_of_platform_driver);
}
module_init(pmi_module_init);

static void __exit pmi_module_exit(void)
{
	platform_driver_unregister(&pmi_of_platform_driver);
}
module_exit(pmi_module_exit);
module_platform_driver(pmi_of_platform_driver);

int pmi_send_message(pmi_message_t msg)
{