[ARM] oprofile: add ARM11 UP support

Add oprofile glue for ARM11 (ARMv6) oprofile support.  This
connects the ARM11 core profiling support to the oprofile code
for uniprocessor configurations.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
Russell King
2006-12-19 12:41:22 +00:00
committed by Russell King
parent c265a762aa
commit 2d9e1ae06d
5 changed files with 84 additions and 0 deletions

View File

@ -135,6 +135,10 @@ int __init oprofile_arch_init(struct oprofile_operations *ops)
spec = &op_xscale_spec;
#endif
#ifdef CONFIG_OPROFILE_ARMV6
spec = &op_armv6_spec;
#endif
if (spec) {
ret = spec->init();
if (ret < 0)