2021-09-21 17:43:06

by Nishanth Menon

[permalink] [raw]
Subject: [PATCH] drm/bridge: cdns-dsi: Make sure to to create proper aliases for dt

Add MODULE_DEVICE_TABLE to the device tree table to create required
aliases needed for module to be loaded with device tree based platform.

Fixes: e19233955d9e ("drm/bridge: Add Cadence DSI driver")
Signed-off-by: Nishanth Menon <[email protected]>
---
drivers/gpu/drm/bridge/cdns-dsi.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/gpu/drm/bridge/cdns-dsi.c b/drivers/gpu/drm/bridge/cdns-dsi.c
index d8a15c459b42..829e1a144656 100644
--- a/drivers/gpu/drm/bridge/cdns-dsi.c
+++ b/drivers/gpu/drm/bridge/cdns-dsi.c
@@ -1284,6 +1284,7 @@ static const struct of_device_id cdns_dsi_of_match[] = {
{ .compatible = "cdns,dsi" },
{ },
};
+MODULE_DEVICE_TABLE(of, cdns_dsi_of_match);

static struct platform_driver cdns_dsi_platform_driver = {
.probe = cdns_dsi_drm_probe,
--
2.32.0


2021-11-09 23:58:10

by Nishanth Menon

[permalink] [raw]
Subject: Re: [PATCH] drm/bridge: cdns-dsi: Make sure to to create proper aliases for dt

On 12:40-20210921, Nishanth Menon wrote:
> Add MODULE_DEVICE_TABLE to the device tree table to create required
> aliases needed for module to be loaded with device tree based platform.
>
> Fixes: e19233955d9e ("drm/bridge: Add Cadence DSI driver")
> Signed-off-by: Nishanth Menon <[email protected]>
> ---
> drivers/gpu/drm/bridge/cdns-dsi.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/gpu/drm/bridge/cdns-dsi.c b/drivers/gpu/drm/bridge/cdns-dsi.c
> index d8a15c459b42..829e1a144656 100644
> --- a/drivers/gpu/drm/bridge/cdns-dsi.c
> +++ b/drivers/gpu/drm/bridge/cdns-dsi.c
> @@ -1284,6 +1284,7 @@ static const struct of_device_id cdns_dsi_of_match[] = {
> { .compatible = "cdns,dsi" },
> { },
> };
> +MODULE_DEVICE_TABLE(of, cdns_dsi_of_match);
>
> static struct platform_driver cdns_dsi_platform_driver = {
> .probe = cdns_dsi_drm_probe,
> --
> 2.32.0
>
>

Hi, Ping?
--
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

2021-11-10 07:18:59

by Tomi Valkeinen

[permalink] [raw]
Subject: Re: [PATCH] drm/bridge: cdns-dsi: Make sure to to create proper aliases for dt

On 09/11/2021 16:55, Nishanth Menon wrote:
> On 12:40-20210921, Nishanth Menon wrote:
>> Add MODULE_DEVICE_TABLE to the device tree table to create required
>> aliases needed for module to be loaded with device tree based platform.
>>
>> Fixes: e19233955d9e ("drm/bridge: Add Cadence DSI driver")
>> Signed-off-by: Nishanth Menon <[email protected]>
>> ---
>> drivers/gpu/drm/bridge/cdns-dsi.c | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/drivers/gpu/drm/bridge/cdns-dsi.c b/drivers/gpu/drm/bridge/cdns-dsi.c
>> index d8a15c459b42..829e1a144656 100644
>> --- a/drivers/gpu/drm/bridge/cdns-dsi.c
>> +++ b/drivers/gpu/drm/bridge/cdns-dsi.c
>> @@ -1284,6 +1284,7 @@ static const struct of_device_id cdns_dsi_of_match[] = {
>> { .compatible = "cdns,dsi" },
>> { },
>> };
>> +MODULE_DEVICE_TABLE(of, cdns_dsi_of_match);
>>
>> static struct platform_driver cdns_dsi_platform_driver = {
>> .probe = cdns_dsi_drm_probe,
>> --
>> 2.32.0
>>
>>
>
> Hi, Ping?
>

Reviewed-by: Tomi Valkeinen <[email protected]>

Tomi

2021-11-10 09:04:46

by Laurent Pinchart

[permalink] [raw]
Subject: Re: [PATCH] drm/bridge: cdns-dsi: Make sure to to create proper aliases for dt

Hi Nishanth,

Thank you for the patch, and sorry for the late reply.

On Tue, Nov 09, 2021 at 08:55:38AM -0600, Nishanth Menon wrote:
> On 12:40-20210921, Nishanth Menon wrote:
> > Add MODULE_DEVICE_TABLE to the device tree table to create required
> > aliases needed for module to be loaded with device tree based platform.
> >
> > Fixes: e19233955d9e ("drm/bridge: Add Cadence DSI driver")
> > Signed-off-by: Nishanth Menon <[email protected]>

Reviewed-by: Laurent Pinchart <[email protected]>

> > ---
> > drivers/gpu/drm/bridge/cdns-dsi.c | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > diff --git a/drivers/gpu/drm/bridge/cdns-dsi.c b/drivers/gpu/drm/bridge/cdns-dsi.c
> > index d8a15c459b42..829e1a144656 100644
> > --- a/drivers/gpu/drm/bridge/cdns-dsi.c
> > +++ b/drivers/gpu/drm/bridge/cdns-dsi.c
> > @@ -1284,6 +1284,7 @@ static const struct of_device_id cdns_dsi_of_match[] = {
> > { .compatible = "cdns,dsi" },
> > { },
> > };
> > +MODULE_DEVICE_TABLE(of, cdns_dsi_of_match);
> >
> > static struct platform_driver cdns_dsi_platform_driver = {
> > .probe = cdns_dsi_drm_probe,

--
Regards,

Laurent Pinchart

2022-02-28 09:58:55

by Tomi Valkeinen

[permalink] [raw]
Subject: Re: [PATCH] drm/bridge: cdns-dsi: Make sure to to create proper aliases for dt

On 09/11/2021 16:55, Nishanth Menon wrote:
> On 12:40-20210921, Nishanth Menon wrote:
>> Add MODULE_DEVICE_TABLE to the device tree table to create required
>> aliases needed for module to be loaded with device tree based platform.
>>
>> Fixes: e19233955d9e ("drm/bridge: Add Cadence DSI driver")
>> Signed-off-by: Nishanth Menon <[email protected]>
>> ---
>> drivers/gpu/drm/bridge/cdns-dsi.c | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/drivers/gpu/drm/bridge/cdns-dsi.c b/drivers/gpu/drm/bridge/cdns-dsi.c
>> index d8a15c459b42..829e1a144656 100644
>> --- a/drivers/gpu/drm/bridge/cdns-dsi.c
>> +++ b/drivers/gpu/drm/bridge/cdns-dsi.c
>> @@ -1284,6 +1284,7 @@ static const struct of_device_id cdns_dsi_of_match[] = {
>> { .compatible = "cdns,dsi" },
>> { },
>> };
>> +MODULE_DEVICE_TABLE(of, cdns_dsi_of_match);
>>
>> static struct platform_driver cdns_dsi_platform_driver = {
>> .probe = cdns_dsi_drm_probe,
>> --
>> 2.32.0
>>
>>
>
> Hi, Ping?

Thanks, I'll apply to drm-misc-next.

Tomi