summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaolo 'Blaisorblade' Giarrusso2005-10-09 21:37:53 +0200
committerLinus Torvalds2005-10-10 17:36:00 +0200
commit52a2d3e45e06012a662f627177729d3196ba8903 (patch)
tree735ed9c6e64a0e2d7f2925559becab7da97b0e3d
parent[PATCH] uml: cleanup byte order macros for COW driver (diff)
downloadkernel-qcow2-linux-52a2d3e45e06012a662f627177729d3196ba8903.tar.gz
kernel-qcow2-linux-52a2d3e45e06012a662f627177729d3196ba8903.tar.xz
kernel-qcow2-linux-52a2d3e45e06012a662f627177729d3196ba8903.zip
[PATCH] uml: cleanup whitespace for COW driver
Fix whitespace - I split this off the previous patch for easier review. Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r--arch/um/drivers/cow.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/arch/um/drivers/cow.h b/arch/um/drivers/cow.h
index c54e20a3d21d..dc36b222100b 100644
--- a/arch/um/drivers/cow.h
+++ b/arch/um/drivers/cow.h
@@ -23,15 +23,15 @@
#include <netinet/in.h>
#if defined(__BYTE_ORDER)
-#if __BYTE_ORDER == __BIG_ENDIAN
-# define ntohll(x) (x)
-# define htonll(x) (x)
-#elif __BYTE_ORDER == __LITTLE_ENDIAN
-# define ntohll(x) bswap_64(x)
-# define htonll(x) bswap_64(x)
-#else
-# error "Could not determine byte order: __BYTE_ORDER uncorrectly defined"
-#endif
+# if __BYTE_ORDER == __BIG_ENDIAN
+# define ntohll(x) (x)
+# define htonll(x) (x)
+# elif __BYTE_ORDER == __LITTLE_ENDIAN
+# define ntohll(x) bswap_64(x)
+# define htonll(x) bswap_64(x)
+# else
+# error "Could not determine byte order: __BYTE_ORDER uncorrectly defined"
+# endif
#else /* ! defined(__BYTE_ORDER) */
# error "Could not determine byte order: __BYTE_ORDER not defined"