diff options
author | Andrew Jones <drjones@redhat.com> | 2019-03-25 14:16:47 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2019-03-25 14:16:47 +0000 |
commit | f2b2f53f6429b5abd7cd86bd65747f5f13e195eb (patch) | |
tree | 3791795878b54576177cccd45d620effa65bf6c1 /target/arm/cpu.h | |
parent | a46118fc16537a593119e5b316052a98514046bb (diff) | |
download | qemu-f2b2f53f6429b5abd7cd86bd65747f5f13e195eb.zip qemu-f2b2f53f6429b5abd7cd86bd65747f5f13e195eb.tar.gz qemu-f2b2f53f6429b5abd7cd86bd65747f5f13e195eb.tar.bz2 |
target/arm: make pmccntr_op_start/finish static
These functions are not used outside helper.c
Signed-off-by: Andrew Jones <drjones@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20190322162333.17159-4-drjones@redhat.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/cpu.h')
-rw-r--r-- | target/arm/cpu.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/target/arm/cpu.h b/target/arm/cpu.h index 5f23c62..d4d2836 100644 --- a/target/arm/cpu.h +++ b/target/arm/cpu.h @@ -993,17 +993,6 @@ int cpu_arm_signal_handler(int host_signum, void *pinfo, void *puc); /** - * pmccntr_op_start/finish - * @env: CPUARMState - * - * Convert the counter in the PMCCNTR between its delta form (the typical mode - * when it's enabled) and the guest-visible value. These two calls must always - * surround any action which might affect the counter. - */ -void pmccntr_op_start(CPUARMState *env); -void pmccntr_op_finish(CPUARMState *env); - -/** * pmu_op_start/finish * @env: CPUARMState * |