Skip to content
Snippets Groups Projects
Commit 3116c860 authored by Vikram Narayanan's avatar Vikram Narayanan Committed by Jean Delvare
Browse files

i2c/writing-clients: Fix foo_driver.id_table


The i2c_device_id structure variable's name is not used in the
i2c_driver structure.

Signed-off-by: default avatarVikram Narayanan <vikram186@gmail.com>
Cc: stable@kernel.org
Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
parent d762f438
No related branches found
No related tags found
No related merge requests found
...@@ -38,7 +38,7 @@ static struct i2c_driver foo_driver = { ...@@ -38,7 +38,7 @@ static struct i2c_driver foo_driver = {
.name = "foo", .name = "foo",
}, },
.id_table = foo_ids, .id_table = foo_idtable,
.probe = foo_probe, .probe = foo_probe,
.remove = foo_remove, .remove = foo_remove,
/* if device autodetection is needed: */ /* if device autodetection is needed: */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment