diff options
author | Attilio Rao <attilio.rao@citrix.com> | 2012-08-21 21:22:37 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2012-09-12 15:33:06 +0200 |
commit | 73090f8993a40a2f67fed1ab866a928c68cd3765 (patch) | |
tree | da93d0afc6135448c27899fdbd5afae46153d44c /arch/x86/xen | |
parent | 55d512e245bc7699a8800e23df1a24195dd08217 (diff) | |
download | blackbird-op-linux-73090f8993a40a2f67fed1ab866a928c68cd3765.tar.gz blackbird-op-linux-73090f8993a40a2f67fed1ab866a928c68cd3765.zip |
x86: Remove base argument from x86_init.paging.pagetable_setup_start
We either use swapper_pg_dir or the argument is unused. Preparatory
patch to simplify platform pagetable setup further.
Signed-off-by: Attilio Rao <attilio.rao@citrix.com>
Ackedb-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-2-git-send-email-attilio.rao@citrix.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/xen')
-rw-r--r-- | arch/x86/xen/mmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/xen/mmu.c b/arch/x86/xen/mmu.c index 5141d808e751..32e66c8d0149 100644 --- a/arch/x86/xen/mmu.c +++ b/arch/x86/xen/mmu.c @@ -1174,7 +1174,7 @@ static void xen_exit_mmap(struct mm_struct *mm) spin_unlock(&mm->page_table_lock); } -static void __init xen_pagetable_setup_start(pgd_t *base) +static void __init xen_pagetable_setup_start(void) { } |