Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 44f87d8f authored by Jaiju Yesudasan's avatar Jaiju Yesudasan
Browse files

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: default avatarJaiju Yesudasan <cjaijuy@codeaurora.org>
parent becfd28d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
};