From mboxrd@z Thu Jan 1 00:00:00 1970 From: rjw@sisk.pl (Rafael J. Wysocki) Date: Fri, 25 Feb 2011 23:59:37 +0100 Subject: [PATCH] PM: OPP: opp_find_freq_exact documentation fix In-Reply-To: <1298618044-8292-1-git-send-email-nm@ti.com> References: <1298618044-8292-1-git-send-email-nm@ti.com> Message-ID: <201102252359.38140.rjw@sisk.pl> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Friday, February 25, 2011, Nishanth Menon wrote: > opp_find_freq_exact documentation has is_available instead > of available. This also fixes warning with the kernel-doc: > scripts/kernel-doc drivers/base/power/opp.c >/dev/null > Warning(drivers/base/power/opp.c:246): No description found for parameter 'available' > Warning(drivers/base/power/opp.c:246): Excess function parameter 'is_available' description in 'opp_find_freq_exact' > > Signed-off-by: Nishanth Menon Applied to suspend-2.6/linux-next. Thanks, Rafael > --- > drivers/base/power/opp.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/drivers/base/power/opp.c b/drivers/base/power/opp.c > index 2bb9b4c..56a6899 100644 > --- a/drivers/base/power/opp.c > +++ b/drivers/base/power/opp.c > @@ -222,7 +222,7 @@ int opp_get_opp_count(struct device *dev) > * opp_find_freq_exact() - search for an exact frequency > * @dev: device for which we do this operation > * @freq: frequency to search for > - * @is_available: true/false - match for available opp > + * @available: true/false - match for available opp > * > * Searches for exact match in the opp list and returns pointer to the matching > * opp if found, else returns ERR_PTR in case of error and should be handled >