summaryrefslogtreecommitdiffstats
path: root/include/elf.h
diff options
context:
space:
mode:
authorwdenk <wdenk>2003-06-27 21:31:46 +0000
committerwdenk <wdenk>2003-06-27 21:31:46 +0000
commit8bde7f776c77b343aca29b8c7b58464d915ac245 (patch)
tree20f1fd99975215e7c658454a15cdb4ed4694e2d4 /include/elf.h
parent993cad9364c6b87ae429d1ed1130d8153f6f027e (diff)
downloadbarebox-8bde7f776c77b343aca29b8c7b58464d915ac245.tar.gz
barebox-8bde7f776c77b343aca29b8c7b58464d915ac245.tar.xz
* Code cleanup:
- remove trailing white space, trailing empty lines, C++ comments, etc. - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c) * Patches by Kenneth Johansson, 25 Jun 2003: - major rework of command structure (work done mostly by Michal Cendrowski and Joakim Kristiansen)
Diffstat (limited to 'include/elf.h')
-rw-r--r--include/elf.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/include/elf.h b/include/elf.h
index ed238c37f4..1be294a945 100644
--- a/include/elf.h
+++ b/include/elf.h
@@ -115,9 +115,9 @@ typedef uint16_t Elf32_Half; /* Unsigned medium integer */
/* e_ident */
#define IS_ELF(ehdr) ((ehdr).e_ident[EI_MAG0] == ELFMAG0 && \
- (ehdr).e_ident[EI_MAG1] == ELFMAG1 && \
- (ehdr).e_ident[EI_MAG2] == ELFMAG2 && \
- (ehdr).e_ident[EI_MAG3] == ELFMAG3)
+ (ehdr).e_ident[EI_MAG1] == ELFMAG1 && \
+ (ehdr).e_ident[EI_MAG2] == ELFMAG2 && \
+ (ehdr).e_ident[EI_MAG3] == ELFMAG3)
/* ELF Header */
typedef struct elfhdr{
@@ -531,7 +531,7 @@ unsigned long elf_hash(const unsigned char *name);
/* Cygnus local bits below */
#define EF_PPC_RELOCATABLE 0x00010000 /* PowerPC -mrelocatable flag*/
#define EF_PPC_RELOCATABLE_LIB 0x00008000 /* PowerPC -mrelocatable-lib
- flag */
+ flag */
/* PowerPC relocations defined by the ABIs */
#define R_PPC_NONE 0
@@ -606,4 +606,3 @@ unsigned long elf_hash(const unsigned char *name);
#define R_PPC_TOC16 255
#endif /* _ELF_H */
-