summaryrefslogtreecommitdiff
path: root/include/soc/qcom/profiler.h
diff options
context:
space:
mode:
authorJaiju Yesudasan <cjaijuy@codeaurora.org>2017-03-27 14:25:28 +0530
committerGerrit - the friendly Code Review server <code-review@localhost>2017-04-03 23:23:02 -0700
commitcf1db28018a504c49e260a9fae68a37c4e02fc38 (patch)
tree7dba56141c45ed26f7342754e50a1822a363aacd /include/soc/qcom/profiler.h
parent9af69213de642f19b19f77e04f23de9f66b6b0f0 (diff)
profiler: Reorder the bandwidth counter structure
Reorder the bandwidth counter structure so that it will consistent with TZ.The order from TZ is: Total, CPU, GPU. This will allow consistency with userspace as well. Change-Id: Icb84662820f9c0f21061d10cfb49c0cfd62bd81a Signed-off-by: Jaiju Yesudasan <cjaijuy@codeaurora.org>
Diffstat (limited to 'include/soc/qcom/profiler.h')
-rw-r--r--include/soc/qcom/profiler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/soc/qcom/profiler.h b/include/soc/qcom/profiler.h
index c53b510fc149..ffcf6ec91187 100644
--- a/include/soc/qcom/profiler.h
+++ b/include/soc/qcom/profiler.h
@@ -17,15 +17,15 @@
struct profiler_bw_cntrs_req {
uint32_t total;
- uint32_t gpu;
uint32_t cpu;
+ uint32_t gpu;
uint32_t cmd;
};
struct compat_profiler_bw_cntrs_req {
compat_uint_t total;
- compat_uint_t gpu;
compat_uint_t cpu;
+ compat_uint_t gpu;
compat_uint_t cmd;
};