diff options
author | Nishanth Menon <nm@ti.com> | 2011-02-25 17:46:18 -0500 |
---|---|---|
committer | Rafael J. Wysocki <rjw@sisk.pl> | 2011-03-14 19:43:17 -0400 |
commit | 7ae496187876d264c712d7c102c45edb8eb41363 (patch) | |
tree | b444c78a2104467259bb6ec34cc4a7815fa68185 /drivers/base | |
parent | a8b7228cdce9937ebc302a28db8599035e7b3c86 (diff) |
PM / OPP: opp_find_freq_exact() documentation fix
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 <nm@ti.com>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Diffstat (limited to 'drivers/base')
-rw-r--r-- | 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 2bb9b4cf59d7..56a6899f5e9e 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) | |||
222 | * opp_find_freq_exact() - search for an exact frequency | 222 | * opp_find_freq_exact() - search for an exact frequency |
223 | * @dev: device for which we do this operation | 223 | * @dev: device for which we do this operation |
224 | * @freq: frequency to search for | 224 | * @freq: frequency to search for |
225 | * @is_available: true/false - match for available opp | 225 | * @available: true/false - match for available opp |
226 | * | 226 | * |
227 | * Searches for exact match in the opp list and returns pointer to the matching | 227 | * Searches for exact match in the opp list and returns pointer to the matching |
228 | * opp if found, else returns ERR_PTR in case of error and should be handled | 228 | * opp if found, else returns ERR_PTR in case of error and should be handled |