diff options
author | Michal Simek <monstr@monstr.eu> | 2010-02-22 05:27:27 -0500 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2010-03-11 08:13:10 -0500 |
commit | cca5613f0278fb0ae0aba285a496add55d0cabab (patch) | |
tree | 5a95b230f2ecc5904cd30a29bb017f27932d7600 /arch/microblaze/mm | |
parent | 22607a28213068af113b46862eafa785f00a482e (diff) |
microblaze: Remove VMALLOC_VMADDR
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze/mm')
-rw-r--r-- | arch/microblaze/mm/pgtable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/microblaze/mm/pgtable.c b/arch/microblaze/mm/pgtable.c index 2820081b21ab..63a6fd07c48f 100644 --- a/arch/microblaze/mm/pgtable.c +++ b/arch/microblaze/mm/pgtable.c | |||
@@ -103,7 +103,7 @@ static void __iomem *__ioremap(phys_addr_t addr, unsigned long size, | |||
103 | area = get_vm_area(size, VM_IOREMAP); | 103 | area = get_vm_area(size, VM_IOREMAP); |
104 | if (area == NULL) | 104 | if (area == NULL) |
105 | return NULL; | 105 | return NULL; |
106 | v = VMALLOC_VMADDR(area->addr); | 106 | v = (unsigned long) area->addr; |
107 | } else { | 107 | } else { |
108 | v = (ioremap_bot -= size); | 108 | v = (ioremap_bot -= size); |
109 | } | 109 | } |