Browse Source

[MTD] Make functions static, include header files with prototypes

This patch contains the following possible cleanups:
- every file should #include the headers containing the prototypes for
  it's global functions
- make needlessly global functions static

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Adrian Bunk 19 years ago
parent
commit
2b9175c174

+ 2 - 2
drivers/mtd/chips/cfi_probe.c

@@ -1,7 +1,7 @@
 /*
 /*
    Common Flash Interface probe code.
    Common Flash Interface probe code.
    (C) 2000 Red Hat. GPL'd.
    (C) 2000 Red Hat. GPL'd.
-   $Id: cfi_probe.c,v 1.85 2005/11/15 23:28:17 tpoynor Exp $
+   $Id: cfi_probe.c,v 1.86 2005/11/29 14:48:31 gleixner Exp $
 */
 */
 
 
 #include <linux/config.h>
 #include <linux/config.h>
@@ -426,7 +426,7 @@ static struct mtd_chip_driver cfi_chipdrv = {
 	.module		= THIS_MODULE
 	.module		= THIS_MODULE
 };
 };
 
 
-int __init cfi_probe_init(void)
+static int __init cfi_probe_init(void)
 {
 {
 	register_mtd_chip_driver(&cfi_chipdrv);
 	register_mtd_chip_driver(&cfi_chipdrv);
 	return 0;
 	return 0;

+ 3 - 3
drivers/mtd/devices/block2mtd.c

@@ -1,5 +1,5 @@
 /*
 /*
- * $Id: block2mtd.c,v 1.29 2005/11/07 11:14:24 gleixner Exp $
+ * $Id: block2mtd.c,v 1.30 2005/11/29 14:48:32 gleixner Exp $
  *
  *
  * block2mtd.c - create an mtd from a block device
  * block2mtd.c - create an mtd from a block device
  *
  *
@@ -19,7 +19,7 @@
 #include <linux/mtd/mtd.h>
 #include <linux/mtd/mtd.h>
 #include <linux/buffer_head.h>
 #include <linux/buffer_head.h>
 
 
-#define VERSION "$Revision: 1.29 $"
+#define VERSION "$Revision: 1.30 $"
 
 
 
 
 #define ERROR(fmt, args...) printk(KERN_ERR "block2mtd: " fmt "\n" , ## args)
 #define ERROR(fmt, args...) printk(KERN_ERR "block2mtd: " fmt "\n" , ## args)
@@ -40,7 +40,7 @@ static LIST_HEAD(blkmtd_device_list);
 
 
 
 
 #define PAGE_READAHEAD 64
 #define PAGE_READAHEAD 64
-void cache_readahead(struct address_space *mapping, int index)
+static void cache_readahead(struct address_space *mapping, int index)
 {
 {
 	filler_t *filler = (filler_t*)mapping->a_ops->readpage;
 	filler_t *filler = (filler_t*)mapping->a_ops->readpage;
 	int i, pagei;
 	int i, pagei;

+ 3 - 3
drivers/mtd/ftl.c

@@ -1,5 +1,5 @@
 /* This version ported to the Linux-MTD system by dwmw2@infradead.org
 /* This version ported to the Linux-MTD system by dwmw2@infradead.org
- * $Id: ftl.c,v 1.58 2005/11/07 11:14:19 gleixner Exp $
+ * $Id: ftl.c,v 1.59 2005/11/29 14:48:31 gleixner Exp $
  *
  *
  * Fixes: Arnaldo Carvalho de Melo <acme@conectiva.com.br>
  * Fixes: Arnaldo Carvalho de Melo <acme@conectiva.com.br>
  * - fixes some leaks on failure in build_maps and ftl_notify_add, cleanups
  * - fixes some leaks on failure in build_maps and ftl_notify_add, cleanups
@@ -1084,9 +1084,9 @@ struct mtd_blktrans_ops ftl_tr = {
 	.owner		= THIS_MODULE,
 	.owner		= THIS_MODULE,
 };
 };
 
 
-int init_ftl(void)
+static int init_ftl(void)
 {
 {
-	DEBUG(0, "$Id: ftl.c,v 1.58 2005/11/07 11:14:19 gleixner Exp $\n");
+	DEBUG(0, "$Id: ftl.c,v 1.59 2005/11/29 14:48:31 gleixner Exp $\n");
 
 
 	return register_mtd_blktrans(&ftl_tr);
 	return register_mtd_blktrans(&ftl_tr);
 }
 }

+ 2 - 1
drivers/mtd/maps/physmap.c

@@ -1,5 +1,5 @@
 /*
 /*
- * $Id: physmap.c,v 1.38 2005/11/07 11:14:28 gleixner Exp $
+ * $Id: physmap.c,v 1.39 2005/11/29 14:49:36 gleixner Exp $
  *
  *
  * Normal mappings of chips in physical memory
  * Normal mappings of chips in physical memory
  *
  *
@@ -19,6 +19,7 @@
 #include <linux/mtd/map.h>
 #include <linux/mtd/map.h>
 #include <linux/config.h>
 #include <linux/config.h>
 #include <linux/mtd/partitions.h>
 #include <linux/mtd/partitions.h>
+#include <linux/mtd/physmap.h>
 
 
 static struct mtd_info *mymtd;
 static struct mtd_info *mymtd;
 
 

+ 1 - 1
drivers/mtd/nand/nandsim.c

@@ -1486,7 +1486,7 @@ ns_nand_verify_buf(struct mtd_info *mtd, const u_char *buf, int len)
 /*
 /*
  * Module initialization function
  * Module initialization function
  */
  */
-int __init ns_init_module(void)
+static int __init ns_init_module(void)
 {
 {
 	struct nand_chip *chip;
 	struct nand_chip *chip;
 	struct nandsim *nand;
 	struct nandsim *nand;