1
0
Fork 0

w1: ds2405: use module_w1_family to simplify the code

module_w1_family() makes the code simpler by eliminating
boilerplate code.

Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Acked-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
zero-colors
Wei Yongjun 2017-02-09 15:45:19 +00:00 committed by Greg Kroah-Hartman
parent 45003a1e25
commit 90beaf6422
1 changed files with 1 additions and 12 deletions

View File

@ -224,15 +224,4 @@ static struct w1_family w1_family_ds2405 = {
.fops = &w1_ds2405_fops
};
static int __init w1_ds2405_init(void)
{
return w1_register_family(&w1_family_ds2405);
}
static void __exit w1_ds2405_fini(void)
{
w1_unregister_family(&w1_family_ds2405);
}
module_init(w1_ds2405_init);
module_exit(w1_ds2405_fini);
module_w1_family(w1_family_ds2405);