Commit b25e31ce authored by Paul Jackson's avatar Paul Jackson Committed by Thomas Gleixner

x86 boot: minor code format fixes in e820 and efi routines

Standardize a few pointer declarations to not have the
extra space after the '*' character.
Signed-off-by: default avatarPaul Jackson <pj@sgi.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent c801ed38
...@@ -404,7 +404,7 @@ static void early_panic(char *msg) ...@@ -404,7 +404,7 @@ static void early_panic(char *msg)
} }
/* We're not void only for x86 32-bit compat */ /* We're not void only for x86 32-bit compat */
char * __init machine_specific_memory_setup(void) char *__init machine_specific_memory_setup(void)
{ {
char *who = "BIOS-e820"; char *who = "BIOS-e820";
/* /*
......
...@@ -103,7 +103,7 @@ void __init efi_reserve_bootmem(void) ...@@ -103,7 +103,7 @@ void __init efi_reserve_bootmem(void)
memmap.nr_map * memmap.desc_size); memmap.nr_map * memmap.desc_size);
} }
void __iomem * __init efi_ioremap(unsigned long phys_addr, unsigned long size) void __iomem *__init efi_ioremap(unsigned long phys_addr, unsigned long size)
{ {
static unsigned pages_mapped __initdata; static unsigned pages_mapped __initdata;
unsigned i, pages; unsigned i, pages;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment