mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 18:53:52 +08:00
[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>
This commit is contained in:
parent
028c0cc16e
commit
52a2d3e45e
@ -23,15 +23,15 @@
|
|||||||
#include <netinet/in.h>
|
#include <netinet/in.h>
|
||||||
#if defined(__BYTE_ORDER)
|
#if defined(__BYTE_ORDER)
|
||||||
|
|
||||||
#if __BYTE_ORDER == __BIG_ENDIAN
|
# if __BYTE_ORDER == __BIG_ENDIAN
|
||||||
# define ntohll(x) (x)
|
# define ntohll(x) (x)
|
||||||
# define htonll(x) (x)
|
# define htonll(x) (x)
|
||||||
#elif __BYTE_ORDER == __LITTLE_ENDIAN
|
# elif __BYTE_ORDER == __LITTLE_ENDIAN
|
||||||
# define ntohll(x) bswap_64(x)
|
# define ntohll(x) bswap_64(x)
|
||||||
# define htonll(x) bswap_64(x)
|
# define htonll(x) bswap_64(x)
|
||||||
#else
|
# else
|
||||||
# error "Could not determine byte order: __BYTE_ORDER uncorrectly defined"
|
# error "Could not determine byte order: __BYTE_ORDER uncorrectly defined"
|
||||||
#endif
|
# endif
|
||||||
|
|
||||||
#else /* ! defined(__BYTE_ORDER) */
|
#else /* ! defined(__BYTE_ORDER) */
|
||||||
# error "Could not determine byte order: __BYTE_ORDER not defined"
|
# error "Could not determine byte order: __BYTE_ORDER not defined"
|
||||||
|
Loading…
Reference in New Issue
Block a user