[PATCH -next] w1: ds2405: use module_w1_family to simplify the code

From: Wei Yongjun
Date: Thu Feb 09 2017 - 10:46:38 EST


From: Wei Yongjun <weiyongjun1@xxxxxxxxxx>

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

Signed-off-by: Wei Yongjun <weiyongjun1@xxxxxxxxxx>
---
drivers/w1/slaves/w1_ds2405.c | 13 +------------
1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/drivers/w1/slaves/w1_ds2405.c b/drivers/w1/slaves/w1_ds2405.c
index 1f350cf..d5d5487 100644
--- a/drivers/w1/slaves/w1_ds2405.c
+++ b/drivers/w1/slaves/w1_ds2405.c
@@ -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);