diff options
author | Javier Martinez Canillas <javier@osg.samsung.com> | 2015-08-07 15:04:19 +0300 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2015-08-10 09:37:36 +0300 |
commit | c49c1f0873faddf78c3545a8e25dfe23e8d15c2f (patch) | |
tree | 9a1c3677915e8213c1f1f07dd6d65cc426248545 /drivers/misc/eeprom/max6875.c | |
parent | fb427466dcde21fc4aab27153735bdd5c62b422d (diff) | |
download | linux-c49c1f0873faddf78c3545a8e25dfe23e8d15c2f.tar.xz |
misc: eeprom: Export I2C module alias information in missing drivers
The I2C core always reports the MODALIAS uevent as "i2c:<client name>"
regardless if the driver later is match using the I2C id_table or the
of_match_table. So the driver needs to export the I2C table and this
be built into the module or udev won't have the necessary information
to auto load the correct module when the device is added.
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Reviewed-by: Jean Delvare <jdelvare@suse.de>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/misc/eeprom/max6875.c')
-rw-r--r-- | drivers/misc/eeprom/max6875.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/misc/eeprom/max6875.c b/drivers/misc/eeprom/max6875.c index 580ff9df5529..c74920cc3d18 100644 --- a/drivers/misc/eeprom/max6875.c +++ b/drivers/misc/eeprom/max6875.c @@ -197,6 +197,7 @@ static const struct i2c_device_id max6875_id[] = { { "max6875", 0 }, { } }; +MODULE_DEVICE_TABLE(i2c, max6875_id); static struct i2c_driver max6875_driver = { .driver = { |