Commit dcffa125 authored by Jean Delvare's avatar Jean Delvare

mfd: AB3100 drop unused module parameters

The I2C_CLIENT_INSMOD_1 macro is only useful for i2c drivers which
implement device detection. The ab3100 driver doesn't, so there is no
point in calling it.
Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
Acked-by: default avatarLinus Walleij <linus.walleij@stericsson.com>
Cc: Samuel Ortiz <sameo@linux.intel.com>
parent 0d83f18b
...@@ -57,8 +57,6 @@ ...@@ -57,8 +57,6 @@
* The AB3100 is usually assigned address 0x48 (7-bit) * The AB3100 is usually assigned address 0x48 (7-bit)
* The chip is defined in the platform i2c_board_data section. * The chip is defined in the platform i2c_board_data section.
*/ */
static unsigned short normal_i2c[] = { 0x48, I2C_CLIENT_END };
I2C_CLIENT_INSMOD_1(ab3100);
u8 ab3100_get_chip_type(struct ab3100 *ab3100) u8 ab3100_get_chip_type(struct ab3100 *ab3100)
{ {
...@@ -966,7 +964,7 @@ static int __exit ab3100_remove(struct i2c_client *client) ...@@ -966,7 +964,7 @@ static int __exit ab3100_remove(struct i2c_client *client)
} }
static const struct i2c_device_id ab3100_id[] = { static const struct i2c_device_id ab3100_id[] = {
{ "ab3100", ab3100 }, { "ab3100", 0 },
{ } { }
}; };
MODULE_DEVICE_TABLE(i2c, ab3100_id); MODULE_DEVICE_TABLE(i2c, ab3100_id);
......
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