diff options
author | Russell King <rmk+kernel@armlinux.org.uk> | 2018-07-19 07:43:03 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@armlinux.org.uk> | 2018-11-12 05:51:01 -0500 |
commit | 945aceb1db8885d3a35790cf2e810f681db52756 (patch) | |
tree | f503b198e92f6bbf5112fc996654446dc87c0034 /arch/arm/kernel/bugs.c | |
parent | 65987a8553061515b5851b472081aedb9837a391 (diff) |
ARM: clean up per-processor check_bugs method call
Call the per-processor type check_bugs() method in the same way as we
do other per-processor functions - move the "processor." detail into
proc-fns.h.
Reviewed-by: Julien Thierry <julien.thierry@arm.com>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Diffstat (limited to 'arch/arm/kernel/bugs.c')
-rw-r--r-- | arch/arm/kernel/bugs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/kernel/bugs.c b/arch/arm/kernel/bugs.c index 7be511310191..d41d3598e5e5 100644 --- a/arch/arm/kernel/bugs.c +++ b/arch/arm/kernel/bugs.c | |||
@@ -6,8 +6,8 @@ | |||
6 | void check_other_bugs(void) | 6 | void check_other_bugs(void) |
7 | { | 7 | { |
8 | #ifdef MULTI_CPU | 8 | #ifdef MULTI_CPU |
9 | if (processor.check_bugs) | 9 | if (cpu_check_bugs) |
10 | processor.check_bugs(); | 10 | cpu_check_bugs(); |
11 | #endif | 11 | #endif |
12 | } | 12 | } |
13 | 13 | ||