diff options
author | Christoph Hellwig <hch@lst.de> | 2015-06-22 02:45:10 +0300 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2015-06-22 02:45:10 +0300 |
commit | b2a922cd6c2e3b9c2e36d48683ceb87a5bce8bb8 (patch) | |
tree | e6d0fbac49e962d59a452c188c13e239f985951e /fs/xfs/xfs_linux.h | |
parent | 5809d5e083a0e6c7121724635db2a1a6f9b90d52 (diff) | |
download | linux-b2a922cd6c2e3b9c2e36d48683ceb87a5bce8bb8.tar.xz |
xfs: remove xfs_caddr_t
Just use char pointers directly instead of the confusing typedef to a
pointer type.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_linux.h')
-rw-r--r-- | fs/xfs/xfs_linux.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/xfs/xfs_linux.h b/fs/xfs/xfs_linux.h index 3f48263a325c..85f883dd6207 100644 --- a/fs/xfs/xfs_linux.h +++ b/fs/xfs/xfs_linux.h @@ -35,7 +35,6 @@ typedef unsigned long long int __uint64_t; typedef __s64 xfs_off_t; /* <file offset> type */ typedef unsigned long long xfs_ino_t; /* <inode> type */ typedef __s64 xfs_daddr_t; /* <disk address> type */ -typedef char * xfs_caddr_t; /* <core address> type */ typedef __u32 xfs_dev_t; typedef __u32 xfs_nlink_t; |