File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,18 @@ struct opp_config_data {
50
50
unsigned int flags ;
51
51
};
52
52
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
+
53
65
/*
54
66
* Internal data structure organization with the OPP layer library is as
55
67
* follows:
Original file line number Diff line number Diff line change @@ -45,18 +45,6 @@ struct dev_pm_opp_supply {
45
45
unsigned long u_watt ;
46
46
};
47
47
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
-
60
48
typedef int (* config_regulators_t )(struct device * dev ,
61
49
struct dev_pm_opp * old_opp , struct dev_pm_opp * new_opp ,
62
50
struct regulator * * regulators , unsigned int count );
You can’t perform that action at this time.
0 commit comments