summaryrefslogtreecommitdiff
path: root/nftldump.c
diff options
context:
space:
mode:
authorJosh Boyer <jwboyer@gmail.com>2006-05-16 05:39:27 -0500
committerJosh Boyer <jwboyer@gmail.com>2006-05-16 05:39:27 -0500
commit7349dc6de42b696619d7632fb6a016f848d63bca (patch)
treed98e517e7e1c5ec3906d642c4bedf7c3fdebd364 /nftldump.c
parentba3d8f61a6ce84437bc8e92d30b541336fb6b47b (diff)
Consolidate the swab macros into one location
Signed-off-by: Josh Boyer <jwboyer@gmail.com>
Diffstat (limited to 'nftldump.c')
-rw-r--r--nftldump.c17
1 files changed, 1 insertions, 16 deletions
diff --git a/nftldump.c b/nftldump.c
index fc97b58..59aa7d7 100644
--- a/nftldump.c
+++ b/nftldump.c
@@ -38,6 +38,7 @@
#include <asm/types.h>
#include <mtd/mtd-user.h>
#include <mtd/nftl-user.h>
+#include <mtd_swab.h>
static struct NFTLMediaHeader MedHead[2];
static mtd_info_t meminfo;
@@ -50,26 +51,10 @@ static int NumMedHeads;
static unsigned char BadUnitTable[MAX_ERASE_ZONES];
-/* some byte swabbing stuff from include/linux/byteorder/ */
-#define swab16(x) \
- ((__u16)( \
- (((__u16)(x) & (__u16)0x00ffU) << 8) | \
- (((__u16)(x) & (__u16)0xff00U) >> 8) ))
-#define swab32(x) \
- ((__u32)( \
- (((__u32)(x) & (__u32)0x000000ffUL) << 24) | \
- (((__u32)(x) & (__u32)0x0000ff00UL) << 8) | \
- (((__u32)(x) & (__u32)0x00ff0000UL) >> 8) | \
- (((__u32)(x) & (__u32)0xff000000UL) >> 24) ))
-
#if __BYTE_ORDER == __LITTLE_ENDIAN
-#define cpu_to_le16(x) (x)
-#define cpu_to_le32(x) (x)
#define SWAP16(x) do { ; } while(0)
#define SWAP32(x) do { ; } while(0)
#else
-#define cpu_to_le16(x) swab16(x)
-#define cpu_to_le32(x) swab32(x)
#define SWAP16(x) do { x = swab16(x); } while(0)
#define SWAP32(x) do { x = swab32(x); } while(0)
#endif