diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2015-03-26 06:57:48 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2015-09-03 11:00:44 -0400 |
commit | c3eb700c5db18be80c1ba37d39995b4c23fbe792 (patch) | |
tree | 4212bcde0513161150053eb22d8c1718c70d7da0 | |
parent | 321ae9646bbfdf27550ecb65617322abc2b92052 (diff) |
pcmcia: sa11xx_base.c: remove useless init/exit functions
A library module is not required to have module init/exit functions.
Get rid of these unnecessary functions.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
-rw-r--r-- | drivers/pcmcia/sa11xx_base.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/drivers/pcmcia/sa11xx_base.c b/drivers/pcmcia/sa11xx_base.c index 6e6336d47d4a..815b6950975c 100644 --- a/drivers/pcmcia/sa11xx_base.c +++ b/drivers/pcmcia/sa11xx_base.c | |||
@@ -259,16 +259,6 @@ int sa11xx_drv_pcmcia_probe(struct device *dev, struct pcmcia_low_level *ops, | |||
259 | } | 259 | } |
260 | EXPORT_SYMBOL(sa11xx_drv_pcmcia_probe); | 260 | EXPORT_SYMBOL(sa11xx_drv_pcmcia_probe); |
261 | 261 | ||
262 | static int __init sa11xx_pcmcia_init(void) | ||
263 | { | ||
264 | return 0; | ||
265 | } | ||
266 | fs_initcall(sa11xx_pcmcia_init); | ||
267 | |||
268 | static void __exit sa11xx_pcmcia_exit(void) {} | ||
269 | |||
270 | module_exit(sa11xx_pcmcia_exit); | ||
271 | |||
272 | MODULE_AUTHOR("John Dorsey <john+@cs.cmu.edu>"); | 262 | MODULE_AUTHOR("John Dorsey <john+@cs.cmu.edu>"); |
273 | MODULE_DESCRIPTION("Linux PCMCIA Card Services: SA-11xx core socket driver"); | 263 | MODULE_DESCRIPTION("Linux PCMCIA Card Services: SA-11xx core socket driver"); |
274 | MODULE_LICENSE("Dual MPL/GPL"); | 264 | MODULE_LICENSE("Dual MPL/GPL"); |