[PATCH 7/9] ufs: replace __inline with inline

From: Harvey Harrison
Date: Tue Mar 04 2008 - 20:21:24 EST


Signed-off-by: Harvey Harrison <harvey.harrison@xxxxxxxxx>
---
fs/ufs/swab.h | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/fs/ufs/swab.h b/fs/ufs/swab.h
index 1683d2b..9e343e7 100644
--- a/fs/ufs/swab.h
+++ b/fs/ufs/swab.h
@@ -40,7 +40,7 @@ cpu_to_fs64(struct super_block *sbp, u64 n)
return (__force __fs64)cpu_to_be64(n);
}

-static __inline u32
+static inline u32
fs64_add(struct super_block *sbp, u32 *n, int d)
{
if (UFS_SB(sbp)->s_bytesex == BYTESEX_LE)
@@ -49,7 +49,7 @@ fs64_add(struct super_block *sbp, u32 *n, int d)
return *n = cpu_to_be64(be64_to_cpu(*n)+d);
}

-static __inline u32
+static inline u32
fs64_sub(struct super_block *sbp, u32 *n, int d)
{
if (UFS_SB(sbp)->s_bytesex == BYTESEX_LE)
@@ -58,7 +58,7 @@ fs64_sub(struct super_block *sbp, u32 *n, int d)
return *n = cpu_to_be64(be64_to_cpu(*n)-d);
}

-static __inline u32
+static inline u32
fs32_to_cpu(struct super_block *sbp, __fs32 n)
{
if (UFS_SB(sbp)->s_bytesex == BYTESEX_LE)
--
1.5.4.3.500.g83a2c


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/