projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a7dc1e6
)
w1: ds2805: Use module_w1_family to simplify the code
author
Chen Huang
<chenhuang5@huawei.com>
Thu, 8 Apr 2021 13:09:53 +0000
(13:09 +0000)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Sat, 10 Apr 2021 08:58:21 +0000
(10:58 +0200)
module_w1_family() makes the code simpler by eliminating
boilerplate code.
Signed-off-by: Chen Huang <chenhuang5@huawei.com>
Link:
https://lore.kernel.org/r/20210408130954.1158963-1-chenhuang5@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/w1/slaves/w1_ds2805.c
patch
|
blob
|
history
diff --git
a/drivers/w1/slaves/w1_ds2805.c
b/drivers/w1/slaves/w1_ds2805.c
index
206186d
..
6b5d12b
100644
(file)
--- a/
drivers/w1/slaves/w1_ds2805.c
+++ b/
drivers/w1/slaves/w1_ds2805.c
@@
-291,20
+291,7
@@
static struct w1_family w1_family_0d = {
.fops = &w1_f0d_fops,
};
-static int __init w1_f0d_init(void)
-{
- pr_info("%s()\n", __func__);
- return w1_register_family(&w1_family_0d);
-}
-
-static void __exit w1_f0d_fini(void)
-{
- pr_info("%s()\n", __func__);
- w1_unregister_family(&w1_family_0d);
-}
-
-module_init(w1_f0d_init);
-module_exit(w1_f0d_fini);
+module_w1_family(w1_family_0d);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Andrew Worsley amworsley@gmail.com");