* [RESEND PATCH 0/7] Export I2C and OF module aliases in missing drivers
@ 2015-08-25 6:31 Javier Martinez Canillas
2015-08-25 6:31 ` [RESEND PATCH 1/7] i2c: core: Export I2C module alias information in dummy driver Javier Martinez Canillas
0 siblings, 1 reply; 7+ messages in thread
From: Javier Martinez Canillas @ 2015-08-25 6:31 UTC (permalink / raw)
To: linux-kernel-u79uwXL29TY76Z2rM5mHXA
Cc: Javier Martinez Canillas, linux-fbdev-u79uwXL29TY76Z2rM5mHXA,
Mark Brown, Felipe Balbi, Jacek Anaszewski,
alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw,
Jean-Christophe Plagniol-Villard, Jingoo Han,
linux-i2c-u79uwXL29TY76Z2rM5mHXA,
linux-leds-u79uwXL29TY76Z2rM5mHXA, Richard Purdie, Chanwoo Choi,
Tomi Valkeinen, Greg Kroah-Hartman, Wolfram Sang, Takashi Iwai,
Liam Girdwood, MyungJoo Ham, Lee Jones, Bryan Wu, Jaroslav Kysela,
linux-usb-u79uwXL29TY76Z2rM5mHXA
Hello,
This is a resend of the patches that were not picked from the series
"[PATCH 00/27] Export I2C and OF module aliases in missing drivers" [0]
posted about a month ago.
The patches have no dependencies and can be picked individually by the
relevant maintainer.
I preferred to resend instead of sending a naked ping for each patch
that I got no answer.
Best regards,
Javier
Javier Martinez Canillas (7):
i2c: core: Export I2C module alias information in dummy driver
backlight: tosa: Export I2C module alias information
usb: phy: isp1301: Export I2C module alias information
ALSA: ppc: keywest: Export I2C module alias information
extcon: Export OF module alias information in missing drivers
leds: Export OF module alias information in missing drivers
regulator: isl9305: Export OF module alias information
drivers/extcon/extcon-rt8973a.c | 1 +
drivers/extcon/extcon-sm5502.c | 1 +
drivers/i2c/i2c-core.c | 1 +
drivers/leds/leds-pca963x.c | 1 +
drivers/leds/leds-tca6507.c | 1 +
drivers/regulator/isl9305.c | 1 +
drivers/usb/phy/phy-isp1301.c | 1 +
drivers/video/backlight/tosa_bl.c | 1 +
sound/ppc/keywest.c | 1 +
9 files changed, 9 insertions(+)
--
2.4.3
^ permalink raw reply [flat|nested] 7+ messages in thread
* [RESEND PATCH 1/7] i2c: core: Export I2C module alias information in dummy driver
2015-08-25 6:31 [RESEND PATCH 0/7] Export I2C and OF module aliases in missing drivers Javier Martinez Canillas
@ 2015-08-25 6:31 ` Javier Martinez Canillas
[not found] ` <1440484277-32675-2-git-send-email-javier-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
0 siblings, 1 reply; 7+ messages in thread
From: Javier Martinez Canillas @ 2015-08-25 6:31 UTC (permalink / raw)
To: linux-kernel; +Cc: Javier Martinez Canillas, Wolfram Sang, linux-i2c
The I2C core always reports the MODALIAS uevent as "i2c:<modalias>"
regardless of the mechanism that was used to register the device
(i.e: OF or board code) and the table that is used later to match
the driver with the device (i.e: I2C id table or OF match table).
So drivers needs to export the I2C id table and this be built into
the module or udev won't have the necessary information to autoload
the needed driver module when the device is added.
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
---
drivers/i2c/i2c-core.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c
index a6780289c61d..46536834920c 100644
--- a/drivers/i2c/i2c-core.c
+++ b/drivers/i2c/i2c-core.c
@@ -1041,6 +1041,7 @@ static const struct i2c_device_id dummy_id[] = {
{ "dummy", 0 },
{ },
};
+MODULE_DEVICE_TABLE(i2c, dummy_id);
static int dummy_probe(struct i2c_client *client,
const struct i2c_device_id *id)
--
2.4.3
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [RESEND PATCH 1/7] i2c: core: Export I2C module alias information in dummy driver
[not found] ` <1440484277-32675-2-git-send-email-javier-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
@ 2015-08-26 16:55 ` Wolfram Sang
2015-08-26 18:09 ` Javier Martinez Canillas
0 siblings, 1 reply; 7+ messages in thread
From: Wolfram Sang @ 2015-08-26 16:55 UTC (permalink / raw)
To: Javier Martinez Canillas
Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA,
linux-i2c-u79uwXL29TY76Z2rM5mHXA
[-- Attachment #1: Type: text/plain, Size: 711 bytes --]
On Tue, Aug 25, 2015 at 08:31:11AM +0200, Javier Martinez Canillas wrote:
> The I2C core always reports the MODALIAS uevent as "i2c:<modalias>"
> regardless of the mechanism that was used to register the device
> (i.e: OF or board code) and the table that is used later to match
> the driver with the device (i.e: I2C id table or OF match table).
>
> So drivers needs to export the I2C id table and this be built into
> the module or udev won't have the necessary information to autoload
> the needed driver module when the device is added.
>
> Signed-off-by: Javier Martinez Canillas <javier-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
The dummy driver is always loaded when the i2c core inits.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [RESEND PATCH 1/7] i2c: core: Export I2C module alias information in dummy driver
2015-08-26 16:55 ` Wolfram Sang
@ 2015-08-26 18:09 ` Javier Martinez Canillas
[not found] ` <55DE00F6.1070206-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
0 siblings, 1 reply; 7+ messages in thread
From: Javier Martinez Canillas @ 2015-08-26 18:09 UTC (permalink / raw)
To: Wolfram Sang; +Cc: linux-kernel, linux-i2c
Hello Wolfram,
On 08/26/2015 06:55 PM, Wolfram Sang wrote:
> On Tue, Aug 25, 2015 at 08:31:11AM +0200, Javier Martinez Canillas wrote:
>> The I2C core always reports the MODALIAS uevent as "i2c:<modalias>"
>> regardless of the mechanism that was used to register the device
>> (i.e: OF or board code) and the table that is used later to match
>> the driver with the device (i.e: I2C id table or OF match table).
>>
>> So drivers needs to export the I2C id table and this be built into
>> the module or udev won't have the necessary information to autoload
>> the needed driver module when the device is added.
>>
>> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
>
> The dummy driver is always loaded when the i2c core inits.
>
Ok, I wondered if that was the case but I
was not sure so I posted it just in case.
Then this patch should be dropped.
Best regards,
--
Javier Martinez Canillas
Open Source Group
Samsung Research America
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [RESEND PATCH 1/7] i2c: core: Export I2C module alias information in dummy driver
[not found] ` <55DE00F6.1070206-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
@ 2015-08-31 20:31 ` Wolfram Sang
2015-08-31 22:30 ` Javier Martinez Canillas
0 siblings, 1 reply; 7+ messages in thread
From: Wolfram Sang @ 2015-08-31 20:31 UTC (permalink / raw)
To: Javier Martinez Canillas
Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA,
linux-i2c-u79uwXL29TY76Z2rM5mHXA
[-- Attachment #1: Type: text/plain, Size: 225 bytes --]
> > The dummy driver is always loaded when the i2c core inits.
> >
>
> Ok, I wondered if that was the case but I
> was not sure so I posted it just in case.
Check the source code, this part is pretty obvious...
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [RESEND PATCH 1/7] i2c: core: Export I2C module alias information in dummy driver
2015-08-31 20:31 ` Wolfram Sang
@ 2015-08-31 22:30 ` Javier Martinez Canillas
[not found] ` <55E4D57E.7050708-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
0 siblings, 1 reply; 7+ messages in thread
From: Javier Martinez Canillas @ 2015-08-31 22:30 UTC (permalink / raw)
To: Wolfram Sang; +Cc: linux-kernel, linux-i2c
Hello Wolfram,
On 08/31/2015 10:31 PM, Wolfram Sang wrote:
>
>>> The dummy driver is always loaded when the i2c core inits.
>>>
>>
>> Ok, I wondered if that was the case but I
>> was not sure so I posted it just in case.
>
> Check the source code, this part is pretty obvious...
>
Yes, sorry for missing that obvious detail...
Best regards,
--
Javier Martinez Canillas
Open Source Group
Samsung Research America
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [RESEND PATCH 1/7] i2c: core: Export I2C module alias information in dummy driver
[not found] ` <55E4D57E.7050708-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
@ 2015-08-31 22:46 ` Wolfram Sang
0 siblings, 0 replies; 7+ messages in thread
From: Wolfram Sang @ 2015-08-31 22:46 UTC (permalink / raw)
To: Javier Martinez Canillas
Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA,
linux-i2c-u79uwXL29TY76Z2rM5mHXA
[-- Attachment #1: Type: text/plain, Size: 481 bytes --]
On Tue, Sep 01, 2015 at 12:30:22AM +0200, Javier Martinez Canillas wrote:
> Hello Wolfram,
>
> On 08/31/2015 10:31 PM, Wolfram Sang wrote:
> >
> >>> The dummy driver is always loaded when the i2c core inits.
> >>>
> >>
> >> Ok, I wondered if that was the case but I
> >> was not sure so I posted it just in case.
> >
> > Check the source code, this part is pretty obvious...
> >
>
> Yes, sorry for missing that obvious detail...
No problem, now you know :)
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2015-08-31 22:46 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-25 6:31 [RESEND PATCH 0/7] Export I2C and OF module aliases in missing drivers Javier Martinez Canillas
2015-08-25 6:31 ` [RESEND PATCH 1/7] i2c: core: Export I2C module alias information in dummy driver Javier Martinez Canillas
[not found] ` <1440484277-32675-2-git-send-email-javier-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
2015-08-26 16:55 ` Wolfram Sang
2015-08-26 18:09 ` Javier Martinez Canillas
[not found] ` <55DE00F6.1070206-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
2015-08-31 20:31 ` Wolfram Sang
2015-08-31 22:30 ` Javier Martinez Canillas
[not found] ` <55E4D57E.7050708-JPH+aEBZ4P+UEJcrhfAQsw@public.gmane.org>
2015-08-31 22:46 ` Wolfram Sang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).