@@ -455,6 +455,9 @@ static inline int acpi_i2c_install_space_handler(struct i2c_adapter *adapter)
static const struct i2c_device_id *i2c_match_id(const struct i2c_device_id *id,
const struct i2c_client *client)
{
+ if (!id)
+ return NULL;
+
while (id->name[0]) {
if (strcmp(client->name, id->name) == 0)
return id;
@@ -662,7 +665,7 @@ static int i2c_device_probe(struct device *dev)
}
driver = to_i2c_driver(dev->driver);
- if (!driver->probe || !driver->id_table)
+ if (!driver->probe || !(driver->id_table || dev->driver->of_match_table))
return -ENODEV;
if (client->flags & I2C_CLIENT_WAKE) {
If an i2c-driver does not have an Linux specific id_table, but does have an of_match_table available then allow that to be probed by the i2c core code. Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk> --- drivers/i2c/i2c-core.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)