From: Adrian Bunk Make the needlessly global part_probes[] static. Signed-off-by: Adrian Bunk Acked-by: Mart Raudsepp Cc: David Woodhouse Signed-off-by: Andrew Morton --- drivers/mtd/nand/cs553x_nand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/mtd/nand/cs553x_nand.c~make-mtd-nand-cs553x_nandcpart_probes-static drivers/mtd/nand/cs553x_nand.c --- a/drivers/mtd/nand/cs553x_nand.c~make-mtd-nand-cs553x_nandcpart_probes-static +++ a/drivers/mtd/nand/cs553x_nand.c @@ -279,7 +279,7 @@ static int is_geode(void) #ifdef CONFIG_MTD_PARTITIONS -const char *part_probes[] = { "cmdlinepart", NULL }; +static const char *part_probes[] = { "cmdlinepart", NULL }; #endif _