[PATCH 2/2] staging: gdm724x: Remove test for host endian

From: Jaime Arrocha
Date: Tue May 26 2015 - 11:33:47 EST


Small code that is no longer needed after first part of the patch is
applied.

Signed-off-by: Jaime Arrocha <jarr@xxxxxxxxxxxxx>
---
drivers/staging/gdm724x/gdm_endian.h | 11 -----------
1 file changed, 11 deletions(-)

diff --git a/drivers/staging/gdm724x/gdm_endian.h b/drivers/staging/gdm724x/gdm_endian.h
index 9b2531f..6177870 100644
--- a/drivers/staging/gdm724x/gdm_endian.h
+++ b/drivers/staging/gdm724x/gdm_endian.h
@@ -16,16 +16,6 @@

#include <linux/types.h>

-#define Endian16_Swap(value) \
- ((((u16)((value) & 0x00FF)) << 8) | \
- (((u16)((value) & 0xFF00)) >> 8))
-
-#define Endian32_Swap(value) \
- ((((u32)((value) & 0x000000FF)) << 24) | \
- (((u32)((value) & 0x0000FF00)) << 8) | \
- (((u32)((value) & 0x00FF0000)) >> 8) | \
- (((u32)((value) & 0xFF000000)) >> 24))
-
enum {
ENDIANNESS_MIN = 0,
ENDIANNESS_UNKNOWN,
@@ -37,7 +27,6 @@ enum {

struct gdm_endian {
u8 dev_ed;
- u8 host_ed;
};

void gdm_set_endian(struct gdm_endian *ed, u8 dev_endian);
--
1.7.10.4


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/