[PATCH] gpio: max7301: add missing __devexit marking

From: Mike Frysinger
Date: Mon May 18 2009 - 03:57:32 EST


The remove member of the spi_driver max7301_driver uses __devexit_p(),
so the remove function itself should be marked with __devexit. Even
more so considering the probe function is marked with __devinit.

Signed-off-by: Mike Frysinger <vapier@xxxxxxxxxx>
CC: Juergen Beisert <j.beisert@xxxxxxxxxxxxxx>
CC: Dmitry Baryshkov <dbaryshkov@xxxxxxxxx>
---
drivers/gpio/max7301.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/gpio/max7301.c b/drivers/gpio/max7301.c
index 3e7f4e0..7b82eaa 100644
--- a/drivers/gpio/max7301.c
+++ b/drivers/gpio/max7301.c
@@ -287,7 +287,7 @@ exit_destroy:
return ret;
}

-static int max7301_remove(struct spi_device *spi)
+static int __devexit max7301_remove(struct spi_device *spi)
{
struct max7301 *ts;
int ret;
--
1.6.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/