diff options
author | Linux Build Service Account <lnxbuild@quicinc.com> | 2017-05-03 23:31:07 -0700 |
---|---|---|
committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2017-05-03 23:31:06 -0700 |
commit | 495301846ea5c9e97b6da20d55ebbfdb4a14efd8 (patch) | |
tree | 5a92db026bcc86e14158ec121a2b7c7e267ae622 /include/soc | |
parent | 5d78c03af8ffb440d418cbc45ad0d68928354e48 (diff) | |
parent | cf1db28018a504c49e260a9fae68a37c4e02fc38 (diff) |
Merge "profiler: Reorder the bandwidth counter structure"
Diffstat (limited to 'include/soc')
-rw-r--r-- | include/soc/qcom/profiler.h | 4 |
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; }; |