diff options
author | Viresh Kumar | 2022-02-10 14:37:53 +0530 |
---|---|---|
committer | Viresh Kumar | 2022-02-11 09:59:04 +0530 |
commit | 021dbecabc93b1610b5db989d52a94e0c6671136 (patch) | |
tree | 799313959bf164af382f8ac3fcfb732705ea322b /drivers/opp/opp.h | |
parent | e783362eb54cd99b2cac8b3a9aeac942e6f6ac07 (diff) |
opp: Expose of-node's name in debugfs
It is difficult to find which OPPs are active at the moment, specially
if there are multiple OPPs with same frequency available in the device
tree (controlled by supported hardware feature).
Expose name of the DT node to find out the exact OPP.
While at it, also expose level field.
Reported-by: Leo Yan <leo.yan@linaro.org>
Tested-by: Leo Yan <leo.yan@linaro.org>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Diffstat (limited to 'drivers/opp/opp.h')
-rw-r--r-- | drivers/opp/opp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/opp/opp.h b/drivers/opp/opp.h index 407c3bfe51d9..45e3a55239a1 100644 --- a/drivers/opp/opp.h +++ b/drivers/opp/opp.h @@ -96,6 +96,7 @@ struct dev_pm_opp { #ifdef CONFIG_DEBUG_FS struct dentry *dentry; + const char *of_name; #endif }; |