diff options
author | Javier Martinez Canillas | 2016-05-17 12:25:37 -0400 |
---|---|---|
committer | Jonathan Cameron | 2016-05-21 20:08:14 +0100 |
commit | cdd469ad9e008a58ed465efa09f8594f1387e8ce (patch) | |
tree | 45b855635210acbda338ee5d866fe482b5f00933 /drivers/iio/temperature | |
parent | 194dc4c714132a63a7a731fe4debeccbdfab13e1 (diff) |
iio: Export I2C module alias information
The I2C drivers have an i2c_device_id array but that information isn't
exported to the modules using the MODULE_DEVICE_TABLE() macro. So the
modules autoloading won't work if the I2C device is registered using
OF or legacy board files due missing alias information in the modules.
The issue was found using Kieran Bingham's coccinelle semantic patch:
https://lkml.org/lkml/2016/5/10/520
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/temperature')
-rw-r--r-- | drivers/iio/temperature/tsys02d.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/iio/temperature/tsys02d.c b/drivers/iio/temperature/tsys02d.c index ab6fe8f6f2d1..c0a19a000387 100644 --- a/drivers/iio/temperature/tsys02d.c +++ b/drivers/iio/temperature/tsys02d.c @@ -174,6 +174,7 @@ static const struct i2c_device_id tsys02d_id[] = { {"tsys02d", 0}, {} }; +MODULE_DEVICE_TABLE(i2c, tsys02d_id); static struct i2c_driver tsys02d_driver = { .probe = tsys02d_probe, |