[PATCH] cfi_cmdset_0002.c: fix 'cfi_amdstd_erase_varsize' to be static

Ben Dooks ben-linux at fluff.org
Mon May 28 14:59:00 EDT 2007


Make cfi_amdstd_erase_varsize static, as declared at the top
of the file to ensure sparse does not print a warning for an
undeclared function, as so:

drivers/mtd/chips/cfi_cmdset_0002.c:1612:5: warning: symbol 'cfi_amdstd_erase_varsize' was not declared. Should it be static?

Signed-off-by: Ben Dooks <ben-linux at fluff.org>

diff -urpN -X linux-2.6.22-rc3/Documentation/dontdiff linux-2.6.22-rc3/drivers/mtd/chips/cfi_cmdset_0002.c linux-2.6.22-rc3-sparse1/drivers/mtd/chips/cfi_cmdset_0002.c
--- linux-2.6.22-rc3/drivers/mtd/chips/cfi_cmdset_0002.c	2007-04-26 04:08:32.000000000 +0100
+++ linux-2.6.22-rc3-sparse1/drivers/mtd/chips/cfi_cmdset_0002.c	2007-05-28 19:56:36.000000000 +0100
@@ -1609,7 +1609,7 @@ static int __xipram do_erase_oneblock(st
 }
 
 
-int cfi_amdstd_erase_varsize(struct mtd_info *mtd, struct erase_info *instr)
+static int cfi_amdstd_erase_varsize(struct mtd_info *mtd, struct erase_info *instr)
 {
 	unsigned long ofs, len;
 	int ret;




More information about the linux-mtd mailing list