aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorViresh Kumar <viresh.kumar@linaro.org>2015-11-18 22:43:56 -0500
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2015-11-23 17:42:40 -0500
commitdc4e7b1fa20a840d2317fcfdaa1064fc09d2afcb (patch)
tree34c94d455efafc02edd57da3c4a90d38b1355cb4
parent2aae9915267e60b6ab7af3777f92ca793992e9b9 (diff)
PM / OPP: Add missing doc comments
Few doc-style comments were missing, add them. Rearrange another one to match the sequence within the structure. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Acked-by: Pavel Machek <pavel@ucw.cz> Reviewed-by: Stephen Boyd <sboyd@codeaurora.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r--drivers/base/power/opp/opp.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/base/power/opp/opp.h b/drivers/base/power/opp/opp.h
index a6bd8d2c2b47..b8880c7f8be1 100644
--- a/drivers/base/power/opp/opp.h
+++ b/drivers/base/power/opp/opp.h
@@ -51,8 +51,8 @@ extern struct mutex dev_opp_list_lock;
51 * are protected by the dev_opp_list_lock for integrity. 51 * are protected by the dev_opp_list_lock for integrity.
52 * IMPORTANT: the opp nodes should be maintained in increasing 52 * IMPORTANT: the opp nodes should be maintained in increasing
53 * order. 53 * order.
54 * @dynamic: not-created from static DT entries.
55 * @available: true/false - marks if this OPP as available or not 54 * @available: true/false - marks if this OPP as available or not
55 * @dynamic: not-created from static DT entries.
56 * @turbo: true if turbo (boost) OPP 56 * @turbo: true if turbo (boost) OPP
57 * @suspend: true if suspend OPP 57 * @suspend: true if suspend OPP
58 * @rate: Frequency in hertz 58 * @rate: Frequency in hertz
@@ -126,7 +126,9 @@ struct device_list_opp {
126 * @dev_list: list of devices that share these OPPs 126 * @dev_list: list of devices that share these OPPs
127 * @opp_list: list of opps 127 * @opp_list: list of opps
128 * @np: struct device_node pointer for opp's DT node. 128 * @np: struct device_node pointer for opp's DT node.
129 * @clock_latency_ns_max: Max clock latency in nanoseconds.
129 * @shared_opp: OPP is shared between multiple devices. 130 * @shared_opp: OPP is shared between multiple devices.
131 * @suspend_opp: Pointer to OPP to be used during device suspend.
130 * @dentry: debugfs dentry pointer of the real device directory (not links). 132 * @dentry: debugfs dentry pointer of the real device directory (not links).
131 * @dentry_name: Name of the real dentry. 133 * @dentry_name: Name of the real dentry.
132 * 134 *