projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d2f1528
)
regulator: fix kernel-doc warning in consumer.h
author
Randy Dunlap
<
[email protected]
>
Thu, 8 Sep 2011 17:16:47 +0000
(10:16 -0700)
committer
Linus Torvalds
<
[email protected]
>
Thu, 8 Sep 2011 21:43:03 +0000
(14:43 -0700)
Fix kernel-doc warning about internal/private data by marking it
as "private:" so that kernel-doc will ignore it.
Warning(include/linux/regulator/consumer.h:128): No description found for parameter 'ret'
Signed-off-by: Randy Dunlap <
[email protected]
>
Acked-by: Mark Brown <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
include/linux/regulator/consumer.h
patch
|
blob
|
history
diff --git
a/include/linux/regulator/consumer.h
b/include/linux/regulator/consumer.h
index 26f6ea4444e39fedda935b5505439a6de3301f41..b47771aa57180b6d553fbdb9363973f28569fde6 100644
(file)
--- a/
include/linux/regulator/consumer.h
+++ b/
include/linux/regulator/consumer.h
@@
-123,7
+123,7
@@
struct regulator_bulk_data {
const char *supply;
struct regulator *consumer;
- /* Internal use */
+ /*
private:
Internal use */
int ret;
};