File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -50,6 +50,18 @@ struct opp_config_data {
5050 unsigned int flags ;
5151};
5252
53+ /**
54+ * struct dev_pm_opp_icc_bw - Interconnect bandwidth values
55+ * @avg: Average bandwidth corresponding to this OPP (in icc units)
56+ * @peak: Peak bandwidth corresponding to this OPP (in icc units)
57+ *
58+ * This structure stores the bandwidth values for a single interconnect path.
59+ */
60+ struct dev_pm_opp_icc_bw {
61+ u32 avg ;
62+ u32 peak ;
63+ };
64+
5365/*
5466 * Internal data structure organization with the OPP layer library is as
5567 * follows:
Original file line number Diff line number Diff line change @@ -45,18 +45,6 @@ struct dev_pm_opp_supply {
4545 unsigned long u_watt ;
4646};
4747
48- /**
49- * struct dev_pm_opp_icc_bw - Interconnect bandwidth values
50- * @avg: Average bandwidth corresponding to this OPP (in icc units)
51- * @peak: Peak bandwidth corresponding to this OPP (in icc units)
52- *
53- * This structure stores the bandwidth values for a single interconnect path.
54- */
55- struct dev_pm_opp_icc_bw {
56- u32 avg ;
57- u32 peak ;
58- };
59-
6048typedef int (* config_regulators_t )(struct device * dev ,
6149 struct dev_pm_opp * old_opp , struct dev_pm_opp * new_opp ,
6250 struct regulator * * regulators , unsigned int count );
You can’t perform that action at this time.
0 commit comments