diff options
author | Will Deacon <will.deacon@arm.com> | 2016-02-26 16:13:37 +0000 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2016-02-29 23:23:17 +0000 |
commit | 6ec3070298ab8ea56aa694c6160c51d47a8d0830 (patch) | |
tree | 65993bd819e9af232bbe5b4e16fbfa4b279ea000 | |
parent | ceb495124417a8aada7c6ee917dff8f1328e8480 (diff) | |
download | linux-stable-6ec3070298ab8ea56aa694c6160c51d47a8d0830.tar.gz linux-stable-6ec3070298ab8ea56aa694c6160c51d47a8d0830.tar.bz2 linux-stable-6ec3070298ab8ea56aa694c6160c51d47a8d0830.zip |
arm-cci: don't return value from void function
pmu_write_register has a void return type, so remove the useless return
statement.
Signed-off-by: Will Deacon <will.deacon@arm.com>
-rw-r--r-- | drivers/bus/arm-cci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/bus/arm-cci.c b/drivers/bus/arm-cci.c index d951371a74d4..afe64ab2c06b 100644 --- a/drivers/bus/arm-cci.c +++ b/drivers/bus/arm-cci.c @@ -758,8 +758,8 @@ static u32 pmu_read_register(struct cci_pmu *cci_pmu, int idx, unsigned int offs static void pmu_write_register(struct cci_pmu *cci_pmu, u32 value, int idx, unsigned int offset) { - return writel_relaxed(value, cci_pmu->base + - CCI_PMU_CNTR_BASE(cci_pmu->model, idx) + offset); + writel_relaxed(value, cci_pmu->base + + CCI_PMU_CNTR_BASE(cci_pmu->model, idx) + offset); } static void pmu_disable_counter(struct cci_pmu *cci_pmu, int idx) |