aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2005-09-19 09:18:31 -0400
committerPaul Mackerras <paulus@samba.org>2005-09-21 05:21:08 -0400
commita3e48c10cca3287a845435dd8ca58ecbde72d847 (patch)
tree5976d3b64f272d4383e1dd710afc3b5afd6d08d9 /arch/ppc
parentd9e5b83b120dea9f306de06f7dead55103ab2d46 (diff)
[PATCH] powerpc: rename op_ppc{32,64}_model to op_powerpc_model
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/ppc')
-rw-r--r--arch/ppc/oprofile/common.c2
-rw-r--r--arch/ppc/oprofile/op_impl.h2
-rw-r--r--arch/ppc/oprofile/op_model_fsl_booke.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/arch/ppc/oprofile/common.c b/arch/ppc/oprofile/common.c
index 3169c67abea7..a67d438a7144 100644
--- a/arch/ppc/oprofile/common.c
+++ b/arch/ppc/oprofile/common.c
@@ -25,7 +25,7 @@
25 25
26#include "op_impl.h" 26#include "op_impl.h"
27 27
28static struct op_ppc32_model *model; 28static struct op_powerpc_model *model;
29 29
30static struct op_counter_config ctr[OP_MAX_COUNTER]; 30static struct op_counter_config ctr[OP_MAX_COUNTER];
31static struct op_system_config sys; 31static struct op_system_config sys;
diff --git a/arch/ppc/oprofile/op_impl.h b/arch/ppc/oprofile/op_impl.h
index bc336dc971e3..297f3097d2d9 100644
--- a/arch/ppc/oprofile/op_impl.h
+++ b/arch/ppc/oprofile/op_impl.h
@@ -31,7 +31,7 @@ struct op_system_config {
31}; 31};
32 32
33/* Per-arch configuration */ 33/* Per-arch configuration */
34struct op_ppc32_model { 34struct op_powerpc_model {
35 void (*reg_setup) (struct op_counter_config *, 35 void (*reg_setup) (struct op_counter_config *,
36 struct op_system_config *, 36 struct op_system_config *,
37 int num_counters); 37 int num_counters);
diff --git a/arch/ppc/oprofile/op_model_fsl_booke.c b/arch/ppc/oprofile/op_model_fsl_booke.c
index fc9c859358c6..8fc60f6055ab 100644
--- a/arch/ppc/oprofile/op_model_fsl_booke.c
+++ b/arch/ppc/oprofile/op_model_fsl_booke.c
@@ -176,7 +176,7 @@ static void fsl_booke_handle_interrupt(struct pt_regs *regs,
176 pmc_start_ctrs(1); 176 pmc_start_ctrs(1);
177} 177}
178 178
179struct op_ppc32_model op_model_fsl_booke = { 179struct op_powerpc_model op_model_fsl_booke = {
180 .reg_setup = fsl_booke_reg_setup, 180 .reg_setup = fsl_booke_reg_setup,
181 .start = fsl_booke_start, 181 .start = fsl_booke_start,
182 .stop = fsl_booke_stop, 182 .stop = fsl_booke_stop,