diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2009-11-24 16:07:01 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-12-16 20:57:33 -0500 |
commit | 59d4a91416957c12ccc4185d90a62eb1b44b2fc8 (patch) | |
tree | 82e89f8146d4b31102af9b60086d50645c9bb7f1 /arch/mips | |
parent | c0b4abdd529d8256acc4cf0094db385877f34ae6 (diff) |
MIPS: Excite: move iodev_remove to .devexit.text
The function iodev_remove is used only wrapped by __devexit_p so define
it using __devexit.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: Ming Lei <tom.leiming@gmail.com>
Cc: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Cc: David Brownell <dbrownell@users.sourceforge.net>
Cc: linux-kernel@vger.kernel.org
Cc: linux-mips@linux-mips.org
Patchwork: http://patchwork.linux-mips.org/patch/710/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/basler/excite/excite_iodev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/basler/excite/excite_iodev.c b/arch/mips/basler/excite/excite_iodev.c index 938b1d0b7652..733b2420418a 100644 --- a/arch/mips/basler/excite/excite_iodev.c +++ b/arch/mips/basler/excite/excite_iodev.c | |||
@@ -34,7 +34,7 @@ | |||
34 | 34 | ||
35 | static const struct resource *iodev_get_resource(struct platform_device *, const char *, unsigned int); | 35 | static const struct resource *iodev_get_resource(struct platform_device *, const char *, unsigned int); |
36 | static int __init iodev_probe(struct platform_device *); | 36 | static int __init iodev_probe(struct platform_device *); |
37 | static int __exit iodev_remove(struct platform_device *); | 37 | static int __devexit iodev_remove(struct platform_device *); |
38 | static int iodev_open(struct inode *, struct file *); | 38 | static int iodev_open(struct inode *, struct file *); |
39 | static int iodev_release(struct inode *, struct file *); | 39 | static int iodev_release(struct inode *, struct file *); |
40 | static ssize_t iodev_read(struct file *, char __user *, size_t s, loff_t *); | 40 | static ssize_t iodev_read(struct file *, char __user *, size_t s, loff_t *); |
@@ -103,7 +103,7 @@ static int __init iodev_probe(struct platform_device *dev) | |||
103 | 103 | ||
104 | 104 | ||
105 | 105 | ||
106 | static int __exit iodev_remove(struct platform_device *dev) | 106 | static int __devexit iodev_remove(struct platform_device *dev) |
107 | { | 107 | { |
108 | return misc_deregister(&miscdev); | 108 | return misc_deregister(&miscdev); |
109 | } | 109 | } |