regulator: fix kernel-doc warning in consumer.h
authorRandy Dunlap <[email protected]>
Thu, 8 Sep 2011 17:16:47 +0000 (10:16 -0700)
committerLinus 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

index 26f6ea4444e39fedda935b5505439a6de3301f41..b47771aa57180b6d553fbdb9363973f28569fde6 100644 (file)
@@ -123,7 +123,7 @@ struct regulator_bulk_data {
        const char *supply;
        struct regulator *consumer;
 
-       /* Internal use */
+       /* private: Internal use */
        int ret;
 };