Skip to content

Commit

Permalink
microblaze: add missing CONFIG_ prefixes
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Acked-by: Michal Simek <monstr@monstr.eu>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
  • Loading branch information
Paul Bolle authored and Jiri Kosina committed Oct 13, 2011
1 parent 7533069 commit 6be9dd1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/microblaze/mm/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -304,11 +304,11 @@ asmlinkage void __init mmu_init(void)
/* Map in all of RAM starting at CONFIG_KERNEL_START */
mapin_ram();

#ifdef HIGHMEM_START_BOOL
ioremap_base = HIGHMEM_START;
#ifdef CONFIG_HIGHMEM_START_BOOL
ioremap_base = CONFIG_HIGHMEM_START;
#else
ioremap_base = 0xfe000000UL; /* for now, could be 0xfffff000 */
#endif /* CONFIG_HIGHMEM */
#endif /* CONFIG_HIGHMEM_START_BOOL */
ioremap_bot = ioremap_base;

/* Initialize the context management stuff */
Expand Down

0 comments on commit 6be9dd1

Please sign in to comment.