sparc64: Fix bootup regression due to perf init ordering.

Commit 004417a6d4
("perf, arch: Cleanup perf-pmu init vs lockup-detector")
move the perf events init to be an early_initcall.

But this won't work properly unless the dependencies for
this code initialize beforehand.

Fix it by making cpu_type_probe and pcr_arch_init be
an early_initcall as well.

Reported-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
David S. Miller 2011-01-09 15:36:46 -08:00
Родитель 0c21e3aaf6
Коммит 5edddaab1d
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -375,5 +375,5 @@ static int __init cpu_type_probe(void)
return 0; return 0;
} }
arch_initcall(cpu_type_probe); early_initcall(cpu_type_probe);
#endif #endif

Просмотреть файл

@ -168,4 +168,4 @@ out_unregister:
return err; return err;
} }
arch_initcall(pcr_arch_init); early_initcall(pcr_arch_init);