[PATCH -next] fs.h: fix functions for FILE_LOCKING disabled

From: Randy Dunlap
Date: Tue Sep 28 2010 - 12:55:20 EST


From: Randy Dunlap <randy.dunlap@xxxxxxxxxx>

Fix function signature warning when CONFIG_FILE_LOCKING is disabled.

include/linux/fs.h:1275: warning: function declaration isn't a prototype
include/linux/fs.h:1279: warning: function declaration isn't a prototype

Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx>
---
include/linux/fs.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

--- linux-next-20100927.orig/include/linux/fs.h
+++ linux-next-20100927/include/linux/fs.h
@@ -1271,11 +1271,11 @@ static inline int lock_may_write(struct
return 1;
}

-static inline void lock_flocks()
+static inline void lock_flocks(void)
{
}

-static inline void unlock_flocks()
+static inline void unlock_flocks(void)
{
}

--
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/