diff options
author | Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> | 2005-10-09 15:37:53 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-10-10 11:36:00 -0400 |
commit | 52a2d3e45e06012a662f627177729d3196ba8903 (patch) | |
tree | 735ed9c6e64a0e2d7f2925559becab7da97b0e3d /arch/um | |
parent | 028c0cc16e429ae24d9b8aacc64f4438bdfac0cc (diff) |
[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>
Diffstat (limited to 'arch/um')
-rw-r--r-- | arch/um/drivers/cow.h | 18 |
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 @@ | |||
23 | #include <netinet/in.h> | 23 | #include <netinet/in.h> |
24 | #if defined(__BYTE_ORDER) | 24 | #if defined(__BYTE_ORDER) |
25 | 25 | ||
26 | #if __BYTE_ORDER == __BIG_ENDIAN | 26 | # if __BYTE_ORDER == __BIG_ENDIAN |
27 | # define ntohll(x) (x) | 27 | # define ntohll(x) (x) |
28 | # define htonll(x) (x) | 28 | # define htonll(x) (x) |
29 | #elif __BYTE_ORDER == __LITTLE_ENDIAN | 29 | # elif __BYTE_ORDER == __LITTLE_ENDIAN |
30 | # define ntohll(x) bswap_64(x) | 30 | # define ntohll(x) bswap_64(x) |
31 | # define htonll(x) bswap_64(x) | 31 | # define htonll(x) bswap_64(x) |
32 | #else | 32 | # else |
33 | # error "Could not determine byte order: __BYTE_ORDER uncorrectly defined" | 33 | # error "Could not determine byte order: __BYTE_ORDER uncorrectly defined" |
34 | #endif | 34 | # endif |
35 | 35 | ||
36 | #else /* ! defined(__BYTE_ORDER) */ | 36 | #else /* ! defined(__BYTE_ORDER) */ |
37 | # error "Could not determine byte order: __BYTE_ORDER not defined" | 37 | # error "Could not determine byte order: __BYTE_ORDER not defined" |