diff options
author | David Fries <David@Fries.net> | 2014-01-15 23:29:25 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-02-07 18:40:18 -0500 |
commit | b3be177a19f0f9e4f0deb473cef0e95e1254f2e9 (patch) | |
tree | e124f5b65942b7883fb2dcdc29e8e4ffca2625a7 /drivers/w1/w1_family.c | |
parent | eb2c0da4ac2f4614b0bd3a1b6a0e9b82d0802e08 (diff) |
w1: format for DocBook and fixes
Switch the code documentation format style to DocBook format, enable
DocBook documentation generation, and fix some comments.
Signed-off-by: David Fries <David@Fries.net>
Acked-by: Evgeniy Polyakov <zbr@ioremap.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/w1/w1_family.c')
-rw-r--r-- | drivers/w1/w1_family.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/w1/w1_family.c b/drivers/w1/w1_family.c index e9309778ee72..3bff6b37b472 100644 --- a/drivers/w1/w1_family.c +++ b/drivers/w1/w1_family.c | |||
@@ -31,6 +31,10 @@ | |||
31 | DEFINE_SPINLOCK(w1_flock); | 31 | DEFINE_SPINLOCK(w1_flock); |
32 | static LIST_HEAD(w1_families); | 32 | static LIST_HEAD(w1_families); |
33 | 33 | ||
34 | /** | ||
35 | * w1_register_family() - register a device family driver | ||
36 | * @newf: family to register | ||
37 | */ | ||
34 | int w1_register_family(struct w1_family *newf) | 38 | int w1_register_family(struct w1_family *newf) |
35 | { | 39 | { |
36 | struct list_head *ent, *n; | 40 | struct list_head *ent, *n; |
@@ -59,6 +63,10 @@ int w1_register_family(struct w1_family *newf) | |||
59 | return ret; | 63 | return ret; |
60 | } | 64 | } |
61 | 65 | ||
66 | /** | ||
67 | * w1_unregister_family() - unregister a device family driver | ||
68 | * @fent: family to unregister | ||
69 | */ | ||
62 | void w1_unregister_family(struct w1_family *fent) | 70 | void w1_unregister_family(struct w1_family *fent) |
63 | { | 71 | { |
64 | struct list_head *ent, *n; | 72 | struct list_head *ent, *n; |