diff options
author | Anton Blanchard <anton@samba.org> | 2005-09-06 14:57:52 +1000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-09-06 16:09:21 +1000 |
commit | 8fef0306f9164d4bfd0befb62e63e4d1167681b5 (patch) | |
tree | 55158562dbbe4a9e16f9f5e600c2b7fcee21d38b /include/asm-ppc64 | |
parent | dca859329cee9b4cf02c8b7cb805b49973292ed2 (diff) | |
download | kernel_samsung_smdk4412-8fef0306f9164d4bfd0befb62e63e4d1167681b5.zip kernel_samsung_smdk4412-8fef0306f9164d4bfd0befb62e63e4d1167681b5.tar.gz kernel_samsung_smdk4412-8fef0306f9164d4bfd0befb62e63e4d1167681b5.tar.bz2 |
[PATCH] ppc64: Move oprofile_model into cpu feature struct
Move oprofile_model into cpu feature struct.
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-ppc64')
-rw-r--r-- | include/asm-ppc64/cputable.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-ppc64/cputable.h b/include/asm-ppc64/cputable.h index 445727a..acc9b4d 100644 --- a/include/asm-ppc64/cputable.h +++ b/include/asm-ppc64/cputable.h @@ -36,6 +36,7 @@ * via the mkdefs mechanism. */ struct cpu_spec; +struct op_ppc64_model; typedef void (*cpu_setup_t)(unsigned long offset, struct cpu_spec* spec); @@ -62,6 +63,9 @@ struct cpu_spec { /* Used by oprofile userspace to select the right counters */ char *oprofile_cpu_type; + + /* Processor specific oprofile operations */ + struct op_ppc64_model *oprofile_model; }; extern struct cpu_spec cpu_specs[]; |