]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
drm/bridge: ptn3460: Fix I2C ID table to match the reported modalias
authorJavier Martinez Canillas <javier.martinez@collabora.co.uk>
Thu, 14 May 2015 14:31:29 +0000 (16:31 +0200)
committerThierry Reding <treding@nvidia.com>
Fri, 15 May 2015 09:13:05 +0000 (11:13 +0200)
commit394e5b6d8651db92fd55eac78747a3b13d40f7b7
tree54bfdb65eff69f3bdb373c1fde49bee2ad8142c3
parentcf88fca50230042d97651ed71a2bffec111956f4
drm/bridge: ptn3460: Fix I2C ID table to match the reported modalias

I2C drivers that support OF, have both an I2C and OF device ID tables
that are used to fill the supported module aliases. But currently the
I2C core only uses the OF table to match a device with a driver and
the aliases information are always reported in the form i2c:<name>.

The client->name is used as the name postfix and when booting with OF
this is obtained with of_modalias_node() which drops the compatible
string vendor prefix.

So for I2C drivers, the I2C and OF device ID tables should be keep in
sync in order to make module auto-loading to work but the I2C device
entries shouldn't have the vendor prefix since that is not reported.

Before this patch:

MODALIAS=i2c:ptn3460

$ modinfo | grep alias
alias:          i2c:nxp,ptn3460
alias:          of:N*T*Cnxp,ptn3460*

After this patch:

MODALIAS=i2c:ptn3460

$ modinfo | grep alias
alias:          i2c:ptn3460
alias:          of:N*T*Cnxp,ptn3460*

Signed-off-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
Reviewed-by: Doug Anderson <dianders@chromium.org>
Signed-off-by: Thierry Reding <treding@nvidia.com>
drivers/gpu/drm/bridge/ptn3460.c