diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2011-09-08 10:16:47 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-08 14:43:03 -0700 |
commit | bff747c58cf97bf4fc8b499ee0f419b59d6b226d (patch) | |
tree | eee855fff9b5f944f6054b25475153c2ad56cb54 /include/linux | |
parent | d2f152878d457a84f3708acee5f682322386a79b (diff) | |
download | linux-3.10-bff747c58cf97bf4fc8b499ee0f419b59d6b226d.tar.gz linux-3.10-bff747c58cf97bf4fc8b499ee0f419b59d6b226d.tar.bz2 linux-3.10-bff747c58cf97bf4fc8b499ee0f419b59d6b226d.zip |
regulator: fix kernel-doc warning in consumer.h
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 <rdunlap@xenotime.net>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/regulator/consumer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/regulator/consumer.h b/include/linux/regulator/consumer.h index 26f6ea4444e..b47771aa571 100644 --- 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; }; |