Commit 13d5398a authored by Mehdi Djait's avatar Mehdi Djait Committed by Jonathan Cameron
parent 8abacef3
...@@ -30,6 +30,12 @@ static int kx022a_i2c_probe(struct i2c_client *i2c) ...@@ -30,6 +30,12 @@ static int kx022a_i2c_probe(struct i2c_client *i2c)
return kx022a_probe_internal(dev); return kx022a_probe_internal(dev);
} }
static const struct i2c_device_id kx022a_i2c_id[] = {
{ .name = "kx022a" },
{ }
};
MODULE_DEVICE_TABLE(i2c, kx022a_i2c_id);
static const struct of_device_id kx022a_of_match[] = { static const struct of_device_id kx022a_of_match[] = {
{ .compatible = "kionix,kx022a", }, { .compatible = "kionix,kx022a", },
{ } { }
...@@ -43,6 +49,7 @@ static struct i2c_driver kx022a_i2c_driver = { ...@@ -43,6 +49,7 @@ static struct i2c_driver kx022a_i2c_driver = {
.probe_type = PROBE_PREFER_ASYNCHRONOUS, .probe_type = PROBE_PREFER_ASYNCHRONOUS,
}, },
.probe = kx022a_i2c_probe, .probe = kx022a_i2c_probe,
.id_table = kx022a_i2c_id,
}; };
module_i2c_driver(kx022a_i2c_driver); module_i2c_driver(kx022a_i2c_driver);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment