aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand/autcpu12.c
diff options
context:
space:
mode:
authorDavid Woodhouse <dwmw2@infradead.org>2006-05-16 13:54:50 +0100
committerDavid Woodhouse <dwmw2@infradead.org>2006-05-16 13:54:50 +0100
commitcead4dbc03ba6eb2e35bac04439b76a0cc2286ce (patch)
tree7563bdedb51b496ee57f5f1b7141305d59dcddf1 /drivers/mtd/nand/autcpu12.c
parentce589a0328866228412ea0df2c834688da8f4700 (diff)
downloadkernel_samsung_smdk4412-cead4dbc03ba6eb2e35bac04439b76a0cc2286ce.zip
kernel_samsung_smdk4412-cead4dbc03ba6eb2e35bac04439b76a0cc2286ce.tar.gz
kernel_samsung_smdk4412-cead4dbc03ba6eb2e35bac04439b76a0cc2286ce.tar.bz2
[MTD NAND] Make various initfuncs static, remove #ifdef MODULE from exitfuncs
We all inherited the same error from the original NAND board driver which got copied and changed. Fix them all at once... Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/mtd/nand/autcpu12.c')
-rw-r--r--drivers/mtd/nand/autcpu12.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/mtd/nand/autcpu12.c b/drivers/mtd/nand/autcpu12.c
index 330deb0..43b2960 100644
--- a/drivers/mtd/nand/autcpu12.c
+++ b/drivers/mtd/nand/autcpu12.c
@@ -124,7 +124,7 @@ int autcpu12_device_ready(struct mtd_info *mtd)
/*
* Main initialization routine
*/
-int __init autcpu12_init(void)
+static int __init autcpu12_init(void)
{
struct nand_chip *this;
int err = 0;
@@ -203,7 +203,6 @@ module_init(autcpu12_init);
/*
* Clean up routine
*/
-#ifdef MODULE
static void __exit autcpu12_cleanup(void)
{
/* Release resources, unregister device */
@@ -217,7 +216,6 @@ static void __exit autcpu12_cleanup(void)
}
module_exit(autcpu12_cleanup);
-#endif
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");