Skip to content

Commit

Permalink
target/arm: make pmccntr_op_start/finish static
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Andrew Jones authored and pm215 committed Mar 25, 2019
1 parent a46118f commit f2b2f53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
11 changes: 0 additions & 11 deletions target/arm/cpu.h
Expand Up @@ -992,17 +992,6 @@ static inline bool is_a64(CPUARMState *env)
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
Expand Down
4 changes: 2 additions & 2 deletions target/arm/helper.c
Expand Up @@ -1337,7 +1337,7 @@ static void pmu_update_irq(CPUARMState *env)
* etc. can be done logically. This is essentially a no-op if the counter is
* not enabled at the time of the call.
*/
void pmccntr_op_start(CPUARMState *env)
static void pmccntr_op_start(CPUARMState *env)
{
uint64_t cycles = cycles_get_count(env);

Expand Down Expand Up @@ -1367,7 +1367,7 @@ void pmccntr_op_start(CPUARMState *env)
* guest-visible count. A call to pmccntr_op_finish should follow every call to
* pmccntr_op_start.
*/
void pmccntr_op_finish(CPUARMState *env)
static void pmccntr_op_finish(CPUARMState *env)
{
if (pmu_counter_enabled(env, 31)) {
#ifndef CONFIG_USER_ONLY
Expand Down

0 comments on commit f2b2f53

Please sign in to comment.