[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1204679840.5698.73.camel@brick>
Date: Tue, 04 Mar 2008 17:17:19 -0800
From: Harvey Harrison <harvey.harrison@...il.com>
To: Evgeniy Dushistov <dushistov@...l.ru>
Cc: Andrew Morton <akpm@...ux-foundation.org>,
LKML <linux-kernel@...r.kernel.org>
Subject: [PATCH 7/9] ufs: replace __inline with inline
Signed-off-by: Harvey Harrison <harvey.harrison@...il.com>
---
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@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists