mirror of
https://github.com/torvalds/linux.git
synced 2024-11-18 18:11:56 +00:00
mtd: spear_smi: 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: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
This commit is contained in:
parent
2f25ae97fe
commit
a90019e25e
@ -1094,18 +1094,7 @@ static struct platform_driver spear_smi_driver = {
|
||||
.probe = spear_smi_probe,
|
||||
.remove = __devexit_p(spear_smi_remove),
|
||||
};
|
||||
|
||||
static int spear_smi_init(void)
|
||||
{
|
||||
return platform_driver_register(&spear_smi_driver);
|
||||
}
|
||||
module_init(spear_smi_init);
|
||||
|
||||
static void spear_smi_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&spear_smi_driver);
|
||||
}
|
||||
module_exit(spear_smi_exit);
|
||||
module_platform_driver(spear_smi_driver);
|
||||
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_AUTHOR("Ashish Priyadarshi, Shiraz Hashim <shiraz.hashim@st.com>");
|
||||
|
Loading…
Reference in New Issue
Block a user