summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Shyti <andi@etezian.org>2013-06-14 15:55:02 +0200
committerAndi Shyti <andi@etezian.org>2013-06-14 15:55:02 +0200
commit894af494f0a56ecc2e59e2760fc7395f0c9358da (patch)
tree1ccadcc4e52eb8b838164662e3cf741eda7dcb76
parent34f81cbd628fc4aa6d00baa99d1254ca1b7c0d80 (diff)
etzkx.c: don't use __devinit and __devexit for probe and remove function
Signed-off-by: Andi Shyti <andi@etezian.org>
-rw-r--r--etzkx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/etzkx.c b/etzkx.c
index c0cd17d..0629007 100644
--- a/etzkx.c
+++ b/etzkx.c
@@ -2046,7 +2046,7 @@ static void etzkx_input_cleanup(struct etzkx_data *sdata)
input_unregister_device(sdata->input_dev);
}
-static int __devinit etzkx_probe(struct i2c_client *client,
+static int etzkx_probe(struct i2c_client *client,
const struct i2c_device_id *id)
{
int err;
@@ -2213,7 +2213,7 @@ free_stmt:
return err;
}
-static int __devexit etzkx_remove(struct i2c_client *client)
+static int etzkx_remove(struct i2c_client *client)
{
struct etzkx_data *sdata = i2c_get_clientdata(client);