Commit 2524468e authored by Linus Walleij's avatar Linus Walleij Committed by Samuel Ortiz

mfd: Move AB3100 to __devinit

Since there is no discardable probe() function in the I2C device
framework, let's just tag it __devinit and take the footprint hit
rather than seeing the compilation warnings every day.
Signed-off-by: default avatarLinus Walleij <linus.walleij@stericsson.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent deb26e92
...@@ -666,7 +666,7 @@ struct ab3100_init_setting { ...@@ -666,7 +666,7 @@ struct ab3100_init_setting {
u8 setting; u8 setting;
}; };
static const struct ab3100_init_setting __initconst static const struct ab3100_init_setting __devinitconst
ab3100_init_settings[] = { ab3100_init_settings[] = {
{ {
.abreg = AB3100_MCA, .abreg = AB3100_MCA,
...@@ -713,7 +713,7 @@ ab3100_init_settings[] = { ...@@ -713,7 +713,7 @@ ab3100_init_settings[] = {
}, },
}; };
static int __init ab3100_setup(struct ab3100 *ab3100) static int __devinit ab3100_setup(struct ab3100 *ab3100)
{ {
int err = 0; int err = 0;
int i; int i;
...@@ -796,7 +796,7 @@ struct ab_family_id { ...@@ -796,7 +796,7 @@ struct ab_family_id {
char *name; char *name;
}; };
static const struct ab_family_id ids[] __initdata = { static const struct ab_family_id ids[] __devinitdata = {
/* AB3100 */ /* AB3100 */
{ {
.id = 0xc0, .id = 0xc0,
...@@ -850,8 +850,8 @@ static const struct ab_family_id ids[] __initdata = { ...@@ -850,8 +850,8 @@ static const struct ab_family_id ids[] __initdata = {
}, },
}; };
static int __init ab3100_probe(struct i2c_client *client, static int __devinit ab3100_probe(struct i2c_client *client,
const struct i2c_device_id *id) const struct i2c_device_id *id)
{ {
struct ab3100 *ab3100; struct ab3100 *ab3100;
struct ab3100_platform_data *ab3100_plf_data = struct ab3100_platform_data *ab3100_plf_data =
...@@ -962,7 +962,7 @@ static int __init ab3100_probe(struct i2c_client *client, ...@@ -962,7 +962,7 @@ static int __init ab3100_probe(struct i2c_client *client,
return err; return err;
} }
static int __exit ab3100_remove(struct i2c_client *client) static int __devexit ab3100_remove(struct i2c_client *client)
{ {
struct ab3100 *ab3100 = i2c_get_clientdata(client); struct ab3100 *ab3100 = i2c_get_clientdata(client);
int i; int i;
...@@ -996,7 +996,7 @@ static struct i2c_driver ab3100_driver = { ...@@ -996,7 +996,7 @@ static struct i2c_driver ab3100_driver = {
}, },
.id_table = ab3100_id, .id_table = ab3100_id,
.probe = ab3100_probe, .probe = ab3100_probe,
.remove = __exit_p(ab3100_remove), .remove = __devexit_p(ab3100_remove),
}; };
static int __init ab3100_i2c_init(void) static int __init ab3100_i2c_init(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment