From: Adrian Bunk <bunk@stusta.de>

This patch makes a needlessly global function static.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
---

 drivers/md/raid1.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -puN drivers/md/raid1.c~drivers-md-raid1c-make-a-function-static drivers/md/raid1.c
--- devel/drivers/md/raid1.c~drivers-md-raid1c-make-a-function-static	2005-09-01 19:14:15.000000000 -0700
+++ devel-akpm/drivers/md/raid1.c	2005-09-01 19:14:15.000000000 -0700
@@ -1703,7 +1703,7 @@ static int raid1_reshape(mddev_t *mddev,
 	return 0;
 }
 
-void raid1_quiesce(mddev_t *mddev, int state)
+static void raid1_quiesce(mddev_t *mddev, int state)
 {
 	conf_t *conf = mddev_to_conf(mddev);
 
_