From: Adrian Bunk <bunk@kernel.org>
Date: Tue, 29 Apr 2008 07:59:01 +0000 (-0700)
Subject: make fs/buffer.c:cont_expand_zero() static
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=f1e3af72c10ba74fb15864c354515ec1bd8bf2a5;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git

make fs/buffer.c:cont_expand_zero() static

cont_expand_zero() can become static.

Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
---

diff --git a/fs/buffer.c b/fs/buffer.c
index 22ed55198f3d..189efa4efc6e 100644
--- a/fs/buffer.c
+++ b/fs/buffer.c
@@ -2211,8 +2211,8 @@ out:
 	return err;
 }
 
-int cont_expand_zero(struct file *file, struct address_space *mapping,
-			loff_t pos, loff_t *bytes)
+static int cont_expand_zero(struct file *file, struct address_space *mapping,
+			    loff_t pos, loff_t *bytes)
 {
 	struct inode *inode = mapping->host;
 	unsigned blocksize = 1 << inode->i_blkbits;