提交 aef64d0d 编写于 作者: A Axel Lin 提交者: Jean Delvare

hwmon: (i5500_temp) Convert to module_pci_driver

Use module_pci_driver to simplify the code a bit.
Signed-off-by: NAxel Lin <axel.lin@ingics.com>
Reviewed-by: NGuenter Roeck <linux@roeck-us.net>
Signed-off-by: NJean Delvare <jdelvare@suse.de>
上级 e3d98203
......@@ -149,19 +149,8 @@ static struct pci_driver i5500_temp_driver = {
.probe = i5500_temp_probe,
};
static int __init i5500_temp_init(void)
{
return pci_register_driver(&i5500_temp_driver);
}
static void __exit i5500_temp_exit(void)
{
pci_unregister_driver(&i5500_temp_driver);
}
module_pci_driver(i5500_temp_driver);
MODULE_AUTHOR("Jean Delvare <jdelvare@suse.de>");
MODULE_DESCRIPTION("Intel 5500/5520/X58 chipset thermal sensor driver");
MODULE_LICENSE("GPL");
module_init(i5500_temp_init)
module_exit(i5500_temp_exit)
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册