Skip to content

Commit

Permalink
x86 boot: minor code format fixes in e820 and efi routines
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Paul Jackson authored and Thomas Gleixner committed May 25, 2008
1 parent c801ed3 commit b25e31c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arch/x86/kernel/e820_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,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";
/*
Expand Down
2 changes: 1 addition & 1 deletion arch/x86/kernel/efi_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b25e31c

Please sign in to comment.