aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNishanth Menon <nm@ti.com>2012-10-25 19:50:35 -0400
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2012-11-14 18:35:05 -0500
commitc5b4a1c15da3e6f472c6ff1a085a1134d18a1464 (patch)
tree189e7abd53295e2eb98e2550b69fa2b2e3e96f8a
parent7f98a905dca6e4f144cdd4462edeac00c2bdc379 (diff)
PM / devfreq: kernel-doc typo corrections
Parameter documentation needs a ':' for scripts/kernel-doc to parse properly. Minor fixes for ones warned by: ./scripts/kernel-doc -text drivers/devfreq/devfreq.c>/dev/null Signed-off-by: Nishanth Menon <nm@ti.com> Acked-by: Randy Dunlap <rdunlap@xenotime.net> Acked-by: MyungJoo Ham <myungjoo.ham@samsung.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r--drivers/devfreq/devfreq.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/devfreq/devfreq.c b/drivers/devfreq/devfreq.c
index f2f8a976c465..a42f69b34eb2 100644
--- a/drivers/devfreq/devfreq.c
+++ b/drivers/devfreq/devfreq.c
@@ -265,9 +265,9 @@ out:
265/** 265/**
266 * devfreq_notifier_call() - Notify that the device frequency requirements 266 * devfreq_notifier_call() - Notify that the device frequency requirements
267 * has been changed out of devfreq framework. 267 * has been changed out of devfreq framework.
268 * @nb the notifier_block (supposed to be devfreq->nb) 268 * @nb: the notifier_block (supposed to be devfreq->nb)
269 * @type not used 269 * @type: not used
270 * @devp not used 270 * @devp: not used
271 * 271 *
272 * Called by a notifier that uses devfreq->nb. 272 * Called by a notifier that uses devfreq->nb.
273 */ 273 */
@@ -414,7 +414,7 @@ EXPORT_SYMBOL(devfreq_add_device);
414 414
415/** 415/**
416 * devfreq_remove_device() - Remove devfreq feature from a device. 416 * devfreq_remove_device() - Remove devfreq feature from a device.
417 * @devfreq the devfreq instance to be removed 417 * @devfreq: the devfreq instance to be removed
418 */ 418 */
419int devfreq_remove_device(struct devfreq *devfreq) 419int devfreq_remove_device(struct devfreq *devfreq)
420{ 420{
@@ -619,9 +619,9 @@ module_exit(devfreq_exit);
619/** 619/**
620 * devfreq_recommended_opp() - Helper function to get proper OPP for the 620 * devfreq_recommended_opp() - Helper function to get proper OPP for the
621 * freq value given to target callback. 621 * freq value given to target callback.
622 * @dev The devfreq user device. (parent of devfreq) 622 * @dev: The devfreq user device. (parent of devfreq)
623 * @freq The frequency given to target function 623 * @freq: The frequency given to target function
624 * @flags Flags handed from devfreq framework. 624 * @flags: Flags handed from devfreq framework.
625 * 625 *
626 */ 626 */
627struct opp *devfreq_recommended_opp(struct device *dev, unsigned long *freq, 627struct opp *devfreq_recommended_opp(struct device *dev, unsigned long *freq,
@@ -652,8 +652,8 @@ struct opp *devfreq_recommended_opp(struct device *dev, unsigned long *freq,
652 * devfreq_register_opp_notifier() - Helper function to get devfreq notified 652 * devfreq_register_opp_notifier() - Helper function to get devfreq notified
653 * for any changes in the OPP availability 653 * for any changes in the OPP availability
654 * changes 654 * changes
655 * @dev The devfreq user device. (parent of devfreq) 655 * @dev: The devfreq user device. (parent of devfreq)
656 * @devfreq The devfreq object. 656 * @devfreq: The devfreq object.
657 */ 657 */
658int devfreq_register_opp_notifier(struct device *dev, struct devfreq *devfreq) 658int devfreq_register_opp_notifier(struct device *dev, struct devfreq *devfreq)
659{ 659{
@@ -668,8 +668,8 @@ int devfreq_register_opp_notifier(struct device *dev, struct devfreq *devfreq)
668 * devfreq_unregister_opp_notifier() - Helper function to stop getting devfreq 668 * devfreq_unregister_opp_notifier() - Helper function to stop getting devfreq
669 * notified for any changes in the OPP 669 * notified for any changes in the OPP
670 * availability changes anymore. 670 * availability changes anymore.
671 * @dev The devfreq user device. (parent of devfreq) 671 * @dev: The devfreq user device. (parent of devfreq)
672 * @devfreq The devfreq object. 672 * @devfreq: The devfreq object.
673 * 673 *
674 * At exit() callback of devfreq_dev_profile, this must be included if 674 * At exit() callback of devfreq_dev_profile, this must be included if
675 * devfreq_recommended_opp is used. 675 * devfreq_recommended_opp is used.