mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
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,
|
||||
};
|
||||
|
||||
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_platform_driver(ahci_driver);
|
||||
|
||||
MODULE_DESCRIPTION("AHCI SATA platform driver");
|
||||
MODULE_AUTHOR("Anton Vorontsov <avorontsov@ru.mvista.com>");
|
||||
|
Loading…
Reference in New Issue
Block a user