ahci_platform: convert to module_platform_driver
The ahci_platform driver can now use the module_platform_driver() macro. Signed-off-by: Brian Norris <computersforpeace@gmail.com> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
This commit is contained in:
parent
941c77fd0f
commit
9a99e4768a
|
@ -336,18 +336,7 @@ static struct platform_driver ahci_driver = {
|
||||||
},
|
},
|
||||||
.id_table = ahci_devtype,
|
.id_table = ahci_devtype,
|
||||||
};
|
};
|
||||||
|
module_platform_driver(ahci_driver);
|
||||||
static int __init ahci_init(void)
|
|
||||||
{
|
|
||||||
return platform_driver_register(&ahci_driver);
|
|
||||||
}
|
|
||||||
module_init(ahci_init);
|
|
||||||
|
|
||||||
static void __exit ahci_exit(void)
|
|
||||||
{
|
|
||||||
platform_driver_unregister(&ahci_driver);
|
|
||||||
}
|
|
||||||
module_exit(ahci_exit);
|
|
||||||
|
|
||||||
MODULE_DESCRIPTION("AHCI SATA platform driver");
|
MODULE_DESCRIPTION("AHCI SATA platform driver");
|
||||||
MODULE_AUTHOR("Anton Vorontsov <avorontsov@ru.mvista.com>");
|
MODULE_AUTHOR("Anton Vorontsov <avorontsov@ru.mvista.com>");
|
||||||
|
|
Loading…
Reference in New Issue