diff options
author | Jean Delvare <khali@linux-fr.org> | 2009-12-14 21:17:25 +0100 |
---|---|---|
committer | Jean Delvare <khali@linux-fr.org> | 2009-12-14 21:17:25 +0100 |
commit | c3813d6af177fab19e322f3114b1f64fbcf08d71 (patch) | |
tree | 5189e18f95c954461040bc4becbca6acf739c13b /drivers/hwmon/lm77.c | |
parent | 310ec79210d754afe51e2e4a983e846b60179abd (diff) | |
download | linux-c3813d6af177fab19e322f3114b1f64fbcf08d71.tar.bz2 |
i2c: Get rid of struct i2c_client_address_data
Struct i2c_client_address_data only contains one field at this point,
which makes its usefulness questionable. Get rid of it and pass simple
address lists around instead.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Tested-by: Wolfram Sang <w.sang@pengutronix.de>
Diffstat (limited to 'drivers/hwmon/lm77.c')
-rw-r--r-- | drivers/hwmon/lm77.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/lm77.c b/drivers/hwmon/lm77.c index 6373ab2cd952..b6105e570b0e 100644 --- a/drivers/hwmon/lm77.c +++ b/drivers/hwmon/lm77.c @@ -91,7 +91,7 @@ static struct i2c_driver lm77_driver = { .remove = lm77_remove, .id_table = lm77_id, .detect = lm77_detect, - .address_data = &addr_data, + .address_list = normal_i2c, }; /* straight from the datasheet */ |