diff options
author | Tejun Heo <tj@kernel.org> | 2009-03-01 02:03:16 -0500 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2009-03-01 02:03:16 -0500 |
commit | af6326d72c95d6e0bbc88c92185c654f57acef3b (patch) | |
tree | c8753afb892ac74b0e8a3c80d4a48b88dbf6f5c0 /arch/alpha | |
parent | 02d51fdfb2bfcf6bbd776f983177f55868aa0a79 (diff) |
alpha: fix typo in recent early vmalloc change
Impact: fix build
Add missing 'o' in variable name. Compile tested.
Signed-off-by: Tejun Heo <tj@kernel.org>
Reported-by: Ingo Molnar <mingo@elte.hu>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Diffstat (limited to 'arch/alpha')
-rw-r--r-- | arch/alpha/mm/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/alpha/mm/init.c b/arch/alpha/mm/init.c index 91eddd8505df..af71d38c8e41 100644 --- a/arch/alpha/mm/init.c +++ b/arch/alpha/mm/init.c | |||
@@ -202,7 +202,7 @@ callback_init(void * kernel_end) | |||
202 | console_remap_vm.size = nr_pages << PAGE_SHIFT; | 202 | console_remap_vm.size = nr_pages << PAGE_SHIFT; |
203 | vm_area_register_early(&console_remap_vm, PAGE_SIZE); | 203 | vm_area_register_early(&console_remap_vm, PAGE_SIZE); |
204 | 204 | ||
205 | vaddr = (unsigned long)consle_remap_vm.addr; | 205 | vaddr = (unsigned long)console_remap_vm.addr; |
206 | 206 | ||
207 | /* Set up the third level PTEs and update the virtual | 207 | /* Set up the third level PTEs and update the virtual |
208 | addresses of the CRB entries. */ | 208 | addresses of the CRB entries. */ |