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

Commit cfc1d427 authored by Leo Yan's avatar Leo Yan Committed by Arnaldo Carvalho de Melo
Browse files

perf cs-etm: Refactor enumeration cs_etm_sample_type



The values in enumeration cs_etm_sample_type are defined with setting
bit N for each packet type, this is not suggested in the usual case.

This patch refactor cs_etm_sample_type by converting from bit shifting
values to continuous numbers.

Signed-off-by: default avatarLeo Yan <leo.yan@linaro.org>
Reviewed-by: default avatarMathieu Poirier <mathieu.poirier@linaro.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mike Leach <mike.leach@linaro.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Robert Walker <robert.walker@arm.com>
Cc: coresight@lists.linaro.org
Cc: linux-arm-kernel@lists.infradead.org
Link: http://lkml.kernel.org/r/1544513908-16805-5-git-send-email-leo.yan@linaro.org


Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent cee7a6a2
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -23,9 +23,9 @@ struct cs_etm_buffer {
};

enum cs_etm_sample_type {
	CS_ETM_EMPTY = 0,
	CS_ETM_RANGE = 1 << 0,
	CS_ETM_TRACE_ON = 1 << 1,
	CS_ETM_EMPTY,
	CS_ETM_RANGE,
	CS_ETM_TRACE_ON,
};

enum cs_etm_isa {