diff options
author | Paul Jackson <pj@sgi.com> | 2008-05-14 11:15:28 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-05-25 04:55:11 -0400 |
commit | b25e31cec7788ccba5749d10f8f4343fffff4750 (patch) | |
tree | 65d5af4550bce5639d1074d4b9c4380246b60573 /arch | |
parent | c801ed3860fe2f84281d4cae4c3e6ca87e81e890 (diff) |
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: Paul Jackson <pj@sgi.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/e820_64.c | 2 | ||||
-rw-r--r-- | arch/x86/kernel/efi_64.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/e820_64.c b/arch/x86/kernel/e820_64.c index 28a14eb65d3d..c10b4aece5e4 100644 --- a/arch/x86/kernel/e820_64.c +++ b/arch/x86/kernel/e820_64.c | |||
@@ -404,7 +404,7 @@ static void early_panic(char *msg) | |||
404 | } | 404 | } |
405 | 405 | ||
406 | /* We're not void only for x86 32-bit compat */ | 406 | /* We're not void only for x86 32-bit compat */ |
407 | char * __init machine_specific_memory_setup(void) | 407 | char *__init machine_specific_memory_setup(void) |
408 | { | 408 | { |
409 | char *who = "BIOS-e820"; | 409 | char *who = "BIOS-e820"; |
410 | /* | 410 | /* |
diff --git a/arch/x86/kernel/efi_64.c b/arch/x86/kernel/efi_64.c index d0060fdcccac..21a7b759687a 100644 --- a/arch/x86/kernel/efi_64.c +++ b/arch/x86/kernel/efi_64.c | |||
@@ -103,7 +103,7 @@ void __init efi_reserve_bootmem(void) | |||
103 | memmap.nr_map * memmap.desc_size); | 103 | memmap.nr_map * memmap.desc_size); |
104 | } | 104 | } |
105 | 105 | ||
106 | void __iomem * __init efi_ioremap(unsigned long phys_addr, unsigned long size) | 106 | void __iomem *__init efi_ioremap(unsigned long phys_addr, unsigned long size) |
107 | { | 107 | { |
108 | static unsigned pages_mapped __initdata; | 108 | static unsigned pages_mapped __initdata; |
109 | unsigned i, pages; | 109 | unsigned i, pages; |