powerpc/sysdev: Use module_platform_driver macro
This patch removes some code duplication by using module_platform_driver. Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@st.com> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
committed by
Benjamin Herrenschmidt
parent
b2bb65f680
commit
40c935ae3d
@@ -214,18 +214,7 @@ static struct platform_driver pmi_of_platform_driver = {
|
|||||||
.of_match_table = pmi_match,
|
.of_match_table = pmi_match,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
module_platform_driver(pmi_of_platform_driver);
|
||||||
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);
|
|
||||||
|
|
||||||
int pmi_send_message(pmi_message_t msg)
|
int pmi_send_message(pmi_message_t msg)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user