Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 945aceb1 authored by Russell King's avatar Russell King
Browse files

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: default avatarJulien Thierry <julien.thierry@arm.com>
Signed-off-by: default avatarRussell King <rmk+kernel@armlinux.org.uk>
parent 65987a85
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -99,6 +99,7 @@ extern void cpu_do_suspend(void *);
extern void cpu_do_resume(void *);
#else
#define cpu_proc_init			processor._proc_init
#define cpu_check_bugs			processor.check_bugs
#define cpu_proc_fin			processor._proc_fin
#define cpu_reset			processor.reset
#define cpu_do_idle			processor._do_idle
+2 −2
Original line number Diff line number Diff line
@@ -6,8 +6,8 @@
void check_other_bugs(void)
{
#ifdef MULTI_CPU
	if (processor.check_bugs)
		processor.check_bugs();
	if (cpu_check_bugs)
		cpu_check_bugs();
#endif
}