[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>

authored by Paolo 'Blaisorblade' Giarrusso and committed by Linus Torvalds 52a2d3e4 028c0cc1

+9 -9
+9 -9
arch/um/drivers/cow.h
··· 23 #include <netinet/in.h> 24 #if defined(__BYTE_ORDER) 25 26 - #if __BYTE_ORDER == __BIG_ENDIAN 27 - # define ntohll(x) (x) 28 - # define htonll(x) (x) 29 - #elif __BYTE_ORDER == __LITTLE_ENDIAN 30 - # define ntohll(x) bswap_64(x) 31 - # define htonll(x) bswap_64(x) 32 - #else 33 - # error "Could not determine byte order: __BYTE_ORDER uncorrectly defined" 34 - #endif 35 36 #else /* ! defined(__BYTE_ORDER) */ 37 # error "Could not determine byte order: __BYTE_ORDER not defined"
··· 23 #include <netinet/in.h> 24 #if defined(__BYTE_ORDER) 25 26 + # if __BYTE_ORDER == __BIG_ENDIAN 27 + # define ntohll(x) (x) 28 + # define htonll(x) (x) 29 + # elif __BYTE_ORDER == __LITTLE_ENDIAN 30 + # define ntohll(x) bswap_64(x) 31 + # define htonll(x) bswap_64(x) 32 + # else 33 + # error "Could not determine byte order: __BYTE_ORDER uncorrectly defined" 34 + # endif 35 36 #else /* ! defined(__BYTE_ORDER) */ 37 # error "Could not determine byte order: __BYTE_ORDER not defined"