diff options
author | Jean Delvare <khali@linux-fr.org> | 2009-12-14 15:17:23 -0500 |
---|---|---|
committer | Jean Delvare <khali@linux-fr.org> | 2009-12-14 15:17:23 -0500 |
commit | 310ec79210d754afe51e2e4a983e846b60179abd (patch) | |
tree | 98e592b60162cd55e367dc19ba3553617a45b0be /drivers/hwmon/lm85.c | |
parent | f40542532e96dda5506eb76badea322f2ae4731c (diff) |
i2c: Drop the kind parameter from detect callbacks
The "kind" parameter always has value -1, and nobody is using it any
longer, so we can remove it.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Tested-by: Wolfram Sang <w.sang@pengutronix.de>
Diffstat (limited to 'drivers/hwmon/lm85.c')
-rw-r--r-- | drivers/hwmon/lm85.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/hwmon/lm85.c b/drivers/hwmon/lm85.c index d56da2e74708..f5fc45ac6fe5 100644 --- a/drivers/hwmon/lm85.c +++ b/drivers/hwmon/lm85.c | |||
@@ -323,8 +323,7 @@ struct lm85_data { | |||
323 | struct lm85_zone zone[3]; | 323 | struct lm85_zone zone[3]; |
324 | }; | 324 | }; |
325 | 325 | ||
326 | static int lm85_detect(struct i2c_client *client, int kind, | 326 | static int lm85_detect(struct i2c_client *client, struct i2c_board_info *info); |
327 | struct i2c_board_info *info); | ||
328 | static int lm85_probe(struct i2c_client *client, | 327 | static int lm85_probe(struct i2c_client *client, |
329 | const struct i2c_device_id *id); | 328 | const struct i2c_device_id *id); |
330 | static int lm85_remove(struct i2c_client *client); | 329 | static int lm85_remove(struct i2c_client *client); |
@@ -1156,8 +1155,7 @@ static int lm85_is_fake(struct i2c_client *client) | |||
1156 | } | 1155 | } |
1157 | 1156 | ||
1158 | /* Return 0 if detection is successful, -ENODEV otherwise */ | 1157 | /* Return 0 if detection is successful, -ENODEV otherwise */ |
1159 | static int lm85_detect(struct i2c_client *client, int kind, | 1158 | static int lm85_detect(struct i2c_client *client, struct i2c_board_info *info) |
1160 | struct i2c_board_info *info) | ||
1161 | { | 1159 | { |
1162 | struct i2c_adapter *adapter = client->adapter; | 1160 | struct i2c_adapter *adapter = client->adapter; |
1163 | int address = client->addr; | 1161 | int address = client->addr; |