aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd
diff options
context:
space:
mode:
authorPaul Gortmaker <paul.gortmaker@windriver.com>2016-03-27 12:13:54 -0400
committerBrian Norris <computersforpeace@gmail.com>2016-04-25 23:19:13 -0400
commit025ce02d92b67d6c702676c11f7f1f5e8f0a81fa (patch)
treef8c92dc5048d86cb42c87a8870ed5aa4a9c77010 /drivers/mtd
parent08922f644878c9163ada8df3ef9def89be1d5e90 (diff)
mtd: maps: make uclinux.c driver more explicitly non-modular
The Kconfig for this support is currently declared with: config MTD_UCLINUX bool "Generic uClinux RAM/ROM filesystem support" ...meaning that it currently is not being built as a module by anyone. Lets remove as much of the modular evidence that we can, so that when reading the driver there is less doubt it is builtin-only. Since module_init translates to device_initcall in the non-modular case, the init ordering remains unchanged with this commit. We also replace module.h with moduleparam.h since the file does use a module_param, and leaving it as such is currently the easiest way to remain compatible with existing boot arg use cases. We also delete the MODULE_LICENSE tag etc. since all that information was (or is now) contained at the top of the file in the comments. Cc: David Woodhouse <dwmw2@infradead.org> Cc: Greg Ungerer <gerg@snapgear.com> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'drivers/mtd')
-rw-r--r--drivers/mtd/maps/uclinux.c27
1 files changed, 4 insertions, 23 deletions
diff --git a/drivers/mtd/maps/uclinux.c b/drivers/mtd/maps/uclinux.c
index c1af83db5202..00a8190797ec 100644
--- a/drivers/mtd/maps/uclinux.c
+++ b/drivers/mtd/maps/uclinux.c
@@ -4,11 +4,13 @@
4 * uclinux.c -- generic memory mapped MTD driver for uclinux 4 * uclinux.c -- generic memory mapped MTD driver for uclinux
5 * 5 *
6 * (C) Copyright 2002, Greg Ungerer (gerg@snapgear.com) 6 * (C) Copyright 2002, Greg Ungerer (gerg@snapgear.com)
7 *
8 * License: GPL
7 */ 9 */
8 10
9/****************************************************************************/ 11/****************************************************************************/
10 12
11#include <linux/module.h> 13#include <linux/moduleparam.h>
12#include <linux/types.h> 14#include <linux/types.h>
13#include <linux/init.h> 15#include <linux/init.h>
14#include <linux/kernel.h> 16#include <linux/kernel.h>
@@ -117,27 +119,6 @@ static int __init uclinux_mtd_init(void)
117 119
118 return(0); 120 return(0);
119} 121}
120 122device_initcall(uclinux_mtd_init);
121/****************************************************************************/
122
123static void __exit uclinux_mtd_cleanup(void)
124{
125 if (uclinux_ram_mtdinfo) {
126 mtd_device_unregister(uclinux_ram_mtdinfo);
127 map_destroy(uclinux_ram_mtdinfo);
128 uclinux_ram_mtdinfo = NULL;
129 }
130 if (uclinux_ram_map.virt)
131 uclinux_ram_map.virt = 0;
132}
133
134/****************************************************************************/
135
136module_init(uclinux_mtd_init);
137module_exit(uclinux_mtd_cleanup);
138
139MODULE_LICENSE("GPL");
140MODULE_AUTHOR("Greg Ungerer <gerg@snapgear.com>");
141MODULE_DESCRIPTION("Generic MTD for uClinux");
142 123
143/****************************************************************************/ 124/****************************************************************************/