Commit bff747c58cf97bf4fc8b499ee0f419b59d6b226d

Authored by Randy Dunlap
Committed by Linus Torvalds
1 parent d2f152878d

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

include/linux/regulator/consumer.h
... ... @@ -123,7 +123,7 @@
123 123 const char *supply;
124 124 struct regulator *consumer;
125 125  
126   - /* Internal use */
  126 + /* private: Internal use */
127 127 int ret;
128 128 };
129 129