hwmon: (mc13783-adc.c) use module_platform_driver_probe()
This patch uses module_platform_driver_probe() macro which makes the code smaller and simpler. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
Родитель
31880c37c1
Коммит
f40fb63e92
|
@ -273,18 +273,7 @@ static struct platform_driver mc13783_adc_driver = {
|
|||
.id_table = mc13783_adc_idtable,
|
||||
};
|
||||
|
||||
static int __init mc13783_adc_init(void)
|
||||
{
|
||||
return platform_driver_probe(&mc13783_adc_driver, mc13783_adc_probe);
|
||||
}
|
||||
|
||||
static void __exit mc13783_adc_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&mc13783_adc_driver);
|
||||
}
|
||||
|
||||
module_init(mc13783_adc_init);
|
||||
module_exit(mc13783_adc_exit);
|
||||
module_platform_driver_probe(mc13783_adc_driver, mc13783_adc_probe);
|
||||
|
||||
MODULE_DESCRIPTION("MC13783 ADC driver");
|
||||
MODULE_AUTHOR("Luotao Fu <l.fu@pengutronix.de>");
|
||||
|
|
Загрузка…
Ссылка в новой задаче