diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2009-08-20 07:19:57 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2009-08-31 03:35:45 -0400 |
commit | 6f30c1ac3fcf11e08f00670f293546a112cdf4e3 (patch) | |
tree | d392c751369ea01055a5fc2aeb5320cde13abe0d /arch/x86/xen | |
parent | 42bbdb43b16d233b2dacb4cd76e28f61c2a86dc6 (diff) |
x86: Move paravirt banner printout to x86_init_ops
Replace another obscure paravirt magic and move it to
x86_init_ops. Such a hook is also useful for embedded and special
hardware.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/xen')
-rw-r--r-- | arch/x86/xen/enlighten.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c index 73c7b1d610f3..46e23cde143a 100644 --- a/arch/x86/xen/enlighten.c +++ b/arch/x86/xen/enlighten.c | |||
@@ -840,7 +840,6 @@ static const struct pv_info xen_info __initdata = { | |||
840 | static const struct pv_init_ops xen_init_ops __initdata = { | 840 | static const struct pv_init_ops xen_init_ops __initdata = { |
841 | .patch = xen_patch, | 841 | .patch = xen_patch, |
842 | 842 | ||
843 | .banner = xen_banner, | ||
844 | .post_allocator_init = xen_post_allocator_init, | 843 | .post_allocator_init = xen_post_allocator_init, |
845 | }; | 844 | }; |
846 | 845 | ||
@@ -982,6 +981,7 @@ asmlinkage void __init xen_start_kernel(void) | |||
982 | 981 | ||
983 | x86_init.resources.memory_setup = xen_memory_setup; | 982 | x86_init.resources.memory_setup = xen_memory_setup; |
984 | x86_init.oem.arch_setup = xen_arch_setup; | 983 | x86_init.oem.arch_setup = xen_arch_setup; |
984 | x86_init.oem.banner = xen_banner; | ||
985 | 985 | ||
986 | #ifdef CONFIG_X86_64 | 986 | #ifdef CONFIG_X86_64 |
987 | /* | 987 | /* |