OSDN Git Service

mfd: Add some da9052-i2c section annotations
authorDmitry Torokhov <dmitry.torokhov@gmail.com>
Sat, 17 Mar 2012 23:01:09 +0000 (16:01 -0700)
committerSamuel Ortiz <sameo@linux.intel.com>
Tue, 20 Mar 2012 15:38:14 +0000 (16:38 +0100)
da9052_i2c_remove() can and should be marked as __devexit.

Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
drivers/mfd/da9052-i2c.c

index fdc2c6a..36b88e3 100644 (file)
@@ -89,7 +89,7 @@ err:
        return ret;
 }
 
-static int da9052_i2c_remove(struct i2c_client *client)
+static int __devexit da9052_i2c_remove(struct i2c_client *client)
 {
        struct da9052 *da9052 = i2c_get_clientdata(client);
 
@@ -110,7 +110,7 @@ static struct i2c_device_id da9052_i2c_id[] = {
 
 static struct i2c_driver da9052_i2c_driver = {
        .probe = da9052_i2c_probe,
-       .remove = da9052_i2c_remove,
+       .remove = __devexit_p(da9052_i2c_remove),
        .id_table = da9052_i2c_id,
        .driver = {
                .name = "da9052",