diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2008-08-10 16:56:15 -0400 |
---|---|---|
committer | Jean Delvare <khali@mahadeva.delvare> | 2008-08-10 16:56:15 -0400 |
commit | b25b791b13aaa336b56c4f9bd417ff126363f80b (patch) | |
tree | c19dd8eaaca361bd77b0324ccf736eac5159aa29 /drivers/i2c | |
parent | 399d6b26539d83dd734746dc2292d53fbc5807b2 (diff) |
i2c: Fix NULL pointer dereference in i2c_new_probed_device
Fix a NULL pointer dereference that happened when calling
i2c_new_probed_device on one of the addresses for which we use byte
reads instead of quick write for detection purpose (that is: 0x30-0x37
and 0x50-0x5f).
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/i2c-core.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c index 7bf38c418086..c16dcad94412 100644 --- a/drivers/i2c/i2c-core.c +++ b/drivers/i2c/i2c-core.c | |||
@@ -1451,9 +1451,11 @@ i2c_new_probed_device(struct i2c_adapter *adap, | |||
1451 | if ((addr_list[i] & ~0x07) == 0x30 | 1451 | if ((addr_list[i] & ~0x07) == 0x30 |
1452 | || (addr_list[i] & ~0x0f) == 0x50 | 1452 | || (addr_list[i] & ~0x0f) == 0x50 |
1453 | || !i2c_check_functionality(adap, I2C_FUNC_SMBUS_QUICK)) { | 1453 | || !i2c_check_functionality(adap, I2C_FUNC_SMBUS_QUICK)) { |
1454 | union i2c_smbus_data data; | ||
1455 | |||
1454 | if (i2c_smbus_xfer(adap, addr_list[i], 0, | 1456 | if (i2c_smbus_xfer(adap, addr_list[i], 0, |
1455 | I2C_SMBUS_READ, 0, | 1457 | I2C_SMBUS_READ, 0, |
1456 | I2C_SMBUS_BYTE, NULL) >= 0) | 1458 | I2C_SMBUS_BYTE, &data) >= 0) |
1457 | break; | 1459 | break; |
1458 | } else { | 1460 | } else { |
1459 | if (i2c_smbus_xfer(adap, addr_list[i], 0, | 1461 | if (i2c_smbus_xfer(adap, addr_list[i], 0, |