Messages in this thread Patch in this message |  | | From | Paul Jackson <> | | Date | Wed, 14 May 2008 08:15:28 -0700 | | Subject | [PATCH 5/10] x86 boot: minor code format fixes in e820 and efi routines |
| |
From: Paul Jackson <pj@sgi.com>
Standardize a few pointer declarations to not have the extra space after the '*' character.
Signed-off-by: Paul Jackson <pj@sgi.com>
--- arch/x86/kernel/e820_32.c | 2 +- arch/x86/kernel/e820_64.c | 2 +- arch/x86/kernel/efi_64.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-)
--- 2.6.26-rc2-mm1.orig/arch/x86/kernel/e820_32.c 2008-05-14 02:27:19.659222093 -0700 +++ 2.6.26-rc2-mm1/arch/x86/kernel/e820_32.c 2008-05-14 02:50:11.450652182 -0700 @@ -280,7 +280,7 @@ void __init add_memory_region(unsigned l * replaces the original e820 map with a new one, removing overlaps. * */ -int __init sanitize_e820_map(struct e820entry * biosmap, char * pnr_map) +int __init sanitize_e820_map(struct e820entry *biosmap, char *pnr_map) { struct change_member *change_tmp; unsigned long current_type, last_type; --- 2.6.26-rc2-mm1.orig/arch/x86/kernel/e820_64.c 2008-05-14 02:27:19.687222570 -0700 +++ 2.6.26-rc2-mm1/arch/x86/kernel/e820_64.c 2008-05-14 03:04:29.540729012 -0700 @@ -740,7 +740,7 @@ static void early_panic(char *msg) } /* 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"; /* --- 2.6.26-rc2-mm1.orig/arch/x86/kernel/efi_64.c 2008-05-14 02:27:19.783224204 -0700 +++ 2.6.26-rc2-mm1/arch/x86/kernel/efi_64.c 2008-05-14 02:50:11.474652591 -0700 @@ -103,7 +103,7 @@ void __init efi_reserve_bootmem(void) 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; unsigned i, pages; -- I won't rest till it's the best ... Programmer, Linux Scalability Paul Jackson <pj@sgi.com> 1.650.933.1373
|  |