aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2011-03-10 17:10:45 +0800
committerGrant Likely <grant.likely@secretlab.ca>2011-03-12 02:14:48 -0700
commitfc1599f7b0f6aff566237342ade28f2981186cc9 (patch)
treefc0a7011bf605534dbbb465ab4ee3b445e92775b
parent98f51ca98054b1268a7fdfe51d93c86a449ae87c (diff)
gpio: Use __devexit at necessary places
The function gen_74x164_remove and mc33880_remove are used only wrapped by __devexit_p so define it using __devexit. Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
-rw-r--r--drivers/gpio/74x164.c2
-rw-r--r--drivers/gpio/mc33880.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpio/74x164.c b/drivers/gpio/74x164.c
index d91ff4c282e..84e07021983 100644
--- a/drivers/gpio/74x164.c
+++ b/drivers/gpio/74x164.c
@@ -133,7 +133,7 @@ exit_destroy:
return ret;
}
-static int gen_74x164_remove(struct spi_device *spi)
+static int __devexit gen_74x164_remove(struct spi_device *spi)
{
struct gen_74x164_chip *chip;
int ret;
diff --git a/drivers/gpio/mc33880.c b/drivers/gpio/mc33880.c
index 935479da670..00f6d24c669 100644
--- a/drivers/gpio/mc33880.c
+++ b/drivers/gpio/mc33880.c
@@ -146,7 +146,7 @@ exit_destroy:
return ret;
}
-static int mc33880_remove(struct spi_device *spi)
+static int __devexit mc33880_remove(struct spi_device *spi)
{
struct mc33880 *mc;
int ret;