diff options
author | Attilio Rao <attilio.rao@citrix.com> | 2012-08-21 16:22:38 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2012-09-12 09:33:06 -0400 |
commit | 7737b215ad0f94d20a87d98315da9f6cadaf35c9 (patch) | |
tree | ba7c20bfd9c6e002c7ebac9bec0657258ddedfa6 /arch/x86/kernel/x86_init.c | |
parent | 73090f8993a40a2f67fed1ab866a928c68cd3765 (diff) |
x86: Rename pagetable_setup_start() to pagetable_init()
In preparation for unifying the pagetable_setup_start() and
pagetable_setup_done() setup functions, rename appropriately all the
infrastructure related to pagetable_setup_start().
Signed-off-by: Attilio Rao <attilio.rao@citrix.com>
Ackedd-by: <konrad.wilk@oracle.com>
Cc: <Ian.Campbell@citrix.com>
Cc: <Stefano.Stabellini@eu.citrix.com>
Cc: <xen-devel@lists.xensource.com>
Link: http://lkml.kernel.org/r/1345580561-8506-3-git-send-email-attilio.rao@citrix.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/x86_init.c')
-rw-r--r-- | arch/x86/kernel/x86_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/x86_init.c b/arch/x86/kernel/x86_init.c index 3b88493ec7ca..0e1e950113b9 100644 --- a/arch/x86/kernel/x86_init.c +++ b/arch/x86/kernel/x86_init.c | |||
@@ -26,7 +26,7 @@ | |||
26 | 26 | ||
27 | void __cpuinit x86_init_noop(void) { } | 27 | void __cpuinit x86_init_noop(void) { } |
28 | void __init x86_init_uint_noop(unsigned int unused) { } | 28 | void __init x86_init_uint_noop(unsigned int unused) { } |
29 | void __init x86_init_pgd_start_noop(void) { } | 29 | void __init x86_init_pgd_init_noop(void) { } |
30 | void __init x86_init_pgd_done_noop(pgd_t *unused) { } | 30 | void __init x86_init_pgd_done_noop(pgd_t *unused) { } |
31 | int __init iommu_init_noop(void) { return 0; } | 31 | int __init iommu_init_noop(void) { return 0; } |
32 | void iommu_shutdown_noop(void) { } | 32 | void iommu_shutdown_noop(void) { } |
@@ -69,7 +69,7 @@ struct x86_init_ops x86_init __initdata = { | |||
69 | }, | 69 | }, |
70 | 70 | ||
71 | .paging = { | 71 | .paging = { |
72 | .pagetable_setup_start = native_pagetable_setup_start, | 72 | .pagetable_init = native_pagetable_init, |
73 | .pagetable_setup_done = native_pagetable_setup_done, | 73 | .pagetable_setup_done = native_pagetable_setup_done, |
74 | }, | 74 | }, |
75 | 75 | ||