diff options
author | Suzuki K Poulose <suzuki.poulose@arm.com> | 2016-09-05 16:27:53 +0100 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2016-09-07 21:24:42 -0700 |
commit | 1d3ef9c2dc699fcc09320a4b642e84eb3c038f26 (patch) | |
tree | 9175fff195ddf5dcce70b7ff2de4aec5bc6047bb /drivers/bus | |
parent | 28fa9917368978e8272407f2d7f8829b17f024ea (diff) | |
download | linux-1d3ef9c2dc699fcc09320a4b642e84eb3c038f26.tar.gz linux-1d3ef9c2dc699fcc09320a4b642e84eb3c038f26.tar.bz2 linux-1d3ef9c2dc699fcc09320a4b642e84eb3c038f26.zip |
arm-cci: pmu: Fix typo in event name
For one of the CCI events exposed under sysfs, "snoop" was typo'd as
"snopp". Correct this such that users see the expected event name when
enumerating events via sysfs.
Cc: arm@kernel.org
Acked-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'drivers/bus')
-rw-r--r-- | drivers/bus/arm-cci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bus/arm-cci.c b/drivers/bus/arm-cci.c index 5755907f836f..ffa7c9dcbd7a 100644 --- a/drivers/bus/arm-cci.c +++ b/drivers/bus/arm-cci.c @@ -551,7 +551,7 @@ static struct attribute *cci5xx_pmu_event_attrs[] = { CCI5xx_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_wrq, 0xB), CCI5xx_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_snoop_cd_hs, 0xC), CCI5xx_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_rq_stall_addr_hazard, 0xD), - CCI5xx_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_snopp_rq_stall_tt_full, 0xE), + CCI5xx_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_snoop_rq_stall_tt_full, 0xE), CCI5xx_GLOBAL_EVENT_EXT_ATTR_ENTRY(cci_snoop_rq_tzmp1_prot, 0xF), NULL }; |