From: Christoph Hellwig <hch@infradead.org>
Date: Fri, 18 Jul 2008 07:12:50 +0000 (+1000)
Subject: [XFS] fix compilation without CONFIG_PROC_FS
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=766b0925c07cd363c17ff54ebf59b6d34d8042d5;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git

[XFS] fix compilation without CONFIG_PROC_FS

SGI-PV: 984019

SGI-Modid: xfs-linux-melb:xfs-kern:31408a

Signed-off-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Tim Shimmin <tes@sgi.com>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
---

diff --git a/fs/xfs/linux-2.6/xfs_stats.h b/fs/xfs/linux-2.6/xfs_stats.h
index 3fa753d7b700..e83820febc9f 100644
--- a/fs/xfs/linux-2.6/xfs_stats.h
+++ b/fs/xfs/linux-2.6/xfs_stats.h
@@ -146,11 +146,12 @@ extern void xfs_cleanup_procfs(void);
 
 static inline int xfs_init_procfs(void)
 {
-	return 0
-};
+	return 0;
+}
+
 static inline void xfs_cleanup_procfs(void)
 {
-};
+}
 
 #endif	/* !CONFIG_PROC_FS */