Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1226573 > unrolled thread
| Started by | Javier Martinez Canillas <javier@osg.samsung.com> |
|---|---|
| First post | 2015-09-17 01:40 +0200 |
| Last post | 2015-09-17 08:20 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] [media] omap3isp: Fix module autoloading Javier Martinez Canillas <javier@osg.samsung.com> - 2015-09-17 01:40 +0200
Re: [PATCH] [media] omap3isp: Fix module autoloading Laurent Pinchart <laurent.pinchart@ideasonboard.com> - 2015-09-17 08:20 +0200
| From | Javier Martinez Canillas <javier@osg.samsung.com> |
|---|---|
| Date | 2015-09-17 01:40 +0200 |
| Subject | [PATCH] [media] omap3isp: Fix module autoloading |
| Message-ID | <q9usW-2um-13@gated-at.bofh.it> |
Platform drivers needs to export the OF id table and this be built
into the module or udev will not have the necessary information to
autoload the driver module when the device is registered via OF.
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
---
drivers/media/platform/omap3isp/isp.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/media/platform/omap3isp/isp.c b/drivers/media/platform/omap3isp/isp.c
index 56e683b19a73..2c2840650fb2 100644
--- a/drivers/media/platform/omap3isp/isp.c
+++ b/drivers/media/platform/omap3isp/isp.c
@@ -2509,6 +2509,7 @@ static const struct of_device_id omap3isp_of_table[] = {
{ .compatible = "ti,omap3-isp" },
{ },
};
+MODULE_DEVICE_TABLE(of, omap3isp_of_table);
static struct platform_driver omap3isp_driver = {
.probe = isp_probe,
--
2.4.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
|---|---|
| Date | 2015-09-17 08:20 +0200 |
| Message-ID | <q9AI2-3lX-1@gated-at.bofh.it> |
| In reply to | #1226573 |
On Thursday 17 September 2015 01:31:38 Javier Martinez Canillas wrote:
> Platform drivers needs to export the OF id table and this be built
> into the module or udev will not have the necessary information to
> autoload the driver module when the device is registered via OF.
>
> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> ---
>
> drivers/media/platform/omap3isp/isp.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/media/platform/omap3isp/isp.c
> b/drivers/media/platform/omap3isp/isp.c index 56e683b19a73..2c2840650fb2
> 100644
> --- a/drivers/media/platform/omap3isp/isp.c
> +++ b/drivers/media/platform/omap3isp/isp.c
> @@ -2509,6 +2509,7 @@ static const struct of_device_id omap3isp_of_table[] =
> { { .compatible = "ti,omap3-isp" },
> { },
> };
> +MODULE_DEVICE_TABLE(of, omap3isp_of_table);
>
> static struct platform_driver omap3isp_driver = {
> .probe = isp_probe,
--
Regards,
Laurent Pinchart
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web