scsi: sun_esp: Use module_platform_driver to simplify the code
Use module_platform_driver() to eliminate boilerplate code. Link: https://lore.kernel.org/r/20200914065403.3726462-1-liushixin2@huawei.com Signed-off-by: Liu Shixin <liushixin2@huawei.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
Родитель
2d00ffe725
Коммит
ea0dc2002e
|
@ -606,21 +606,9 @@ static struct platform_driver esp_sbus_driver = {
|
|||
.probe = esp_sbus_probe,
|
||||
.remove = esp_sbus_remove,
|
||||
};
|
||||
|
||||
static int __init sunesp_init(void)
|
||||
{
|
||||
return platform_driver_register(&esp_sbus_driver);
|
||||
}
|
||||
|
||||
static void __exit sunesp_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&esp_sbus_driver);
|
||||
}
|
||||
module_platform_driver(esp_sbus_driver);
|
||||
|
||||
MODULE_DESCRIPTION("Sun ESP SCSI driver");
|
||||
MODULE_AUTHOR("David S. Miller (davem@davemloft.net)");
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_VERSION(DRV_VERSION);
|
||||
|
||||
module_init(sunesp_init);
|
||||
module_exit(sunesp_exit);
|
||||
|
|
Загрузка…
Ссылка в новой задаче