Skip to content

Commit

Permalink
MIPS: Excite: move iodev_remove to .devexit.text
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Uwe Kleine-König authored and Ralf Baechle committed Dec 17, 2009
1 parent c0b4abd commit 59d4a91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/mips/basler/excite/excite_iodev.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

static const struct resource *iodev_get_resource(struct platform_device *, const char *, unsigned int);
static int __init iodev_probe(struct platform_device *);
static int __exit iodev_remove(struct platform_device *);
static int __devexit iodev_remove(struct platform_device *);
static int iodev_open(struct inode *, struct file *);
static int iodev_release(struct inode *, struct file *);
static ssize_t iodev_read(struct file *, char __user *, size_t s, loff_t *);
Expand Down Expand Up @@ -103,7 +103,7 @@ static int __init iodev_probe(struct platform_device *dev)



static int __exit iodev_remove(struct platform_device *dev)
static int __devexit iodev_remove(struct platform_device *dev)
{
return misc_deregister(&miscdev);
}
Expand Down

0 comments on commit 59d4a91

Please sign in to comment.