From 21804c131a228ab03f4527abfd573255e261c9ad Mon Sep 17 00:00:00 2001
From: Peter S. Mazinger <ps.m@gmx.net>
Date: Thu, 24 Mar 2011 11:37:17 +0100
Subject: [PATCH 183/396] ldd.c: reduce size

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
---
 utils/ldd.c |   13 +++----------
 1 files changed, 3 insertions(+), 10 deletions(-)

diff --git a/utils/ldd.c b/utils/ldd.c
index c56ddc8..babb68d 100644
--- a/utils/ldd.c
+++ b/utils/ldd.c
@@ -145,7 +145,7 @@ static int interpreter_already_found = 0;
 
 static __inline__ uint32_t byteswap32_to_host(uint32_t value)
 {
-	if (byteswap == 1) {
+	if (byteswap) {
 		return (bswap_32(value));
 	} else {
 		return (value);
@@ -153,7 +153,7 @@ static __inline__ uint32_t byteswap32_to_host(uint32_t value)
 }
 static __inline__ uint64_t byteswap64_to_host(uint64_t value)
 {
-	if (byteswap == 1) {
+	if (byteswap) {
 		return (bswap_64(value));
 	} else {
 		return (value);
@@ -232,14 +232,7 @@ static int check_elf_header(ElfW(Ehdr) *const ehdr)
 	}
 
 	/* Check if the target endianness matches the host's endianness */
-	byteswap = 0;
-	if (UCLIBC_ENDIAN_HOST == UCLIBC_ENDIAN_LITTLE) {
-		if (ehdr->e_ident[5] == ELFDATA2MSB)
-			byteswap = 1;
-	} else if (UCLIBC_ENDIAN_HOST == UCLIBC_ENDIAN_BIG) {
-		if (ehdr->e_ident[5] == ELFDATA2LSB)
-			byteswap = 1;
-	}
+	byteswap = (ehdr->e_ident[5] == ELFDATAM) ? 0 : 1;
 
 	/* Be very lazy, and only byteswap the stuff we use */
 	if (byteswap) {
-- 
1.7.0.4

