diff options
Diffstat (limited to 'arch/mips/include/asm/elf.h')
| -rw-r--r-- | arch/mips/include/asm/elf.h | 30 | 
1 files changed, 15 insertions, 15 deletions
diff --git a/arch/mips/include/asm/elf.h b/arch/mips/include/asm/elf.h index 455c0ac7d4e..cf3ae2480b1 100644 --- a/arch/mips/include/asm/elf.h +++ b/arch/mips/include/asm/elf.h @@ -11,13 +11,13 @@  /* ELF header e_flags defines. */  /* MIPS architecture level. */ -#define EF_MIPS_ARCH_1		0x00000000	/* -mips1 code.  */ -#define EF_MIPS_ARCH_2		0x10000000	/* -mips2 code.  */ -#define EF_MIPS_ARCH_3		0x20000000	/* -mips3 code.  */ -#define EF_MIPS_ARCH_4		0x30000000	/* -mips4 code.  */ -#define EF_MIPS_ARCH_5		0x40000000	/* -mips5 code.  */ -#define EF_MIPS_ARCH_32		0x50000000	/* MIPS32 code.  */ -#define EF_MIPS_ARCH_64		0x60000000	/* MIPS64 code.  */ +#define EF_MIPS_ARCH_1		0x00000000	/* -mips1 code.	 */ +#define EF_MIPS_ARCH_2		0x10000000	/* -mips2 code.	 */ +#define EF_MIPS_ARCH_3		0x20000000	/* -mips3 code.	 */ +#define EF_MIPS_ARCH_4		0x30000000	/* -mips4 code.	 */ +#define EF_MIPS_ARCH_5		0x40000000	/* -mips5 code.	 */ +#define EF_MIPS_ARCH_32		0x50000000	/* MIPS32 code.	 */ +#define EF_MIPS_ARCH_64		0x60000000	/* MIPS64 code.	 */  #define EF_MIPS_ARCH_32R2	0x70000000	/* MIPS32 R2 code.  */  #define EF_MIPS_ARCH_64R2	0x80000000	/* MIPS64 R2 code.  */ @@ -74,7 +74,7 @@  #define R_MIPS_CALL16		11  #define R_MIPS_GPREL32		12  /* The remaining relocs are defined on Irix, although they are not -   in the MIPS ELF ABI.  */ +   in the MIPS ELF ABI.	 */  #define R_MIPS_UNUSED1		13  #define R_MIPS_UNUSED2		14  #define R_MIPS_UNUSED3		15 @@ -214,7 +214,7 @@ typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];  									\  	if (__h->e_machine != EM_MIPS)					\  		__res = 0;						\ -	if (__h->e_ident[EI_CLASS] != ELFCLASS64) 			\ +	if (__h->e_ident[EI_CLASS] != ELFCLASS64)			\  		__res = 0;						\  									\  	__res;								\ @@ -292,7 +292,7 @@ do {									\  		__SET_PERSONALITY32_O32();				\  } while (0)  #else -#define __SET_PERSONALITY32(ex)	do { } while (0) +#define __SET_PERSONALITY32(ex) do { } while (0)  #endif  #define SET_PERSONALITY(ex)						\ @@ -337,11 +337,11 @@ extern int dump_task_fpu(struct task_struct *, elf_fpregset_t *);     instruction set this cpu supports.  This could be done in userspace,     but it's not easy, and we've already done it here.  */ -#define ELF_HWCAP       (0) +#define ELF_HWCAP	(0)  /*   * This yields a string that ld.so will use to load implementation - * specific libraries for optimization.  This is more specific in + * specific libraries for optimization.	 This is more specific in   * intent than poking at uname or /proc/cpuinfo.   */ @@ -365,11 +365,11 @@ extern const char *__elf_platform;  /* This is the location that an ET_DYN program is loaded if exec'ed.  Typical     use of this is to invoke "./ld.so someprog" to test out a new version of -   the loader.  We need to make sure that it is out of the way of the program -   that it will "exec", and that there is sufficient room for the brk.  */ +   the loader.	We need to make sure that it is out of the way of the program +   that it will "exec", and that there is sufficient room for the brk.	*/  #ifndef ELF_ET_DYN_BASE -#define ELF_ET_DYN_BASE         (TASK_SIZE / 3 * 2) +#define ELF_ET_DYN_BASE		(TASK_SIZE / 3 * 2)  #endif  #define ARCH_HAS_SETUP_ADDITIONAL_PAGES 1  |