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/media/common/saa7146_fops.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -puN drivers/media/common/saa7146_fops.c~drivers-media-common-saa7146_fopsc-make-a-function-static drivers/media/common/saa7146_fops.c
--- 25/drivers/media/common/saa7146_fops.c~drivers-media-common-saa7146_fopsc-make-a-function-static	2005-05-31 02:11:16.000000000 -0700
+++ 25-akpm/drivers/media/common/saa7146_fops.c	2005-05-31 02:11:16.000000000 -0700
@@ -403,7 +403,7 @@ static struct file_operations video_fops
 	.llseek		= no_llseek,
 };
 
-void vv_callback(struct saa7146_dev *dev, unsigned long status)
+static void vv_callback(struct saa7146_dev *dev, unsigned long status)
 {
 	u32 isr = status;
 	
_