diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2016-12-11 07:47:27 +0300 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2016-12-16 01:13:42 +0300 |
commit | 378d5a40fa2c251b31d64e9a7e746f71c2e39b14 (patch) | |
tree | 199e2e868f9d4bb367a9316a91827e110e4924a4 /fs | |
parent | dc67a9f70c0b43b0d1f3aa04407e67ca4cf9b241 (diff) | |
download | linux-378d5a40fa2c251b31d64e9a7e746f71c2e39b14.tar.xz |
fs/logfs: drop __CHECK_ENDIAN__
No need for it anymore: __bitwise checks are now
on by default for everyone.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/logfs/logfs.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/logfs/logfs.h b/fs/logfs/logfs.h index 27d040e35faa..11209eefbe59 100644 --- a/fs/logfs/logfs.h +++ b/fs/logfs/logfs.h @@ -10,9 +10,7 @@ #ifndef FS_LOGFS_LOGFS_H #define FS_LOGFS_LOGFS_H -#undef __CHECK_ENDIAN__ -#define __CHECK_ENDIAN__ - +#include <linux/types.h> #include <linux/btree.h> #include <linux/crc32.h> #include <linux/fs.h> |