diff mbox series

drm/mipi: set fwnode when a mipi_dsi_device is registered

Message ID 20210717000345.2345429-1-willmcvicker@google.com (mailing list archive)
State New, archived
Headers show
Series drm/mipi: set fwnode when a mipi_dsi_device is registered | expand

Commit Message

William McVicker July 17, 2021, 12:03 a.m. UTC
This allows the fw_devlink feature to work across mipi_dsi bus devices too.
This feature avoids unnecessary probe deferrals of mipi_dsi devices, defers
consumers of mipi_dsi devices till the mipi_dsi devices probe, and allows
mipi_dsi drivers to implement sync_state() callbacks.

Suggested-by: Saravana Kannan <saravanak@google.com>
Signed-off-by: Will McVicker <willmcvicker@google.com>
Reviewed-by: Saravana Kannan <saravanak@google.com>
---
 drivers/gpu/drm/drm_mipi_dsi.c | 1 +
 1 file changed, 1 insertion(+)

v2:
 Thanks Saravana for the comments! I updated the commit message and added your
 reviewed-by.

Comments

William McVicker Aug. 31, 2021, 5:52 p.m. UTC | #1
Hi All,

I'd like to send a reminder for a review on this patch.

Thanks,
Will


On Fri, Jul 16, 2021 at 5:03 PM Will McVicker <willmcvicker@google.com> wrote:
>
> This allows the fw_devlink feature to work across mipi_dsi bus devices too.
> This feature avoids unnecessary probe deferrals of mipi_dsi devices, defers
> consumers of mipi_dsi devices till the mipi_dsi devices probe, and allows
> mipi_dsi drivers to implement sync_state() callbacks.
>
> Suggested-by: Saravana Kannan <saravanak@google.com>
> Signed-off-by: Will McVicker <willmcvicker@google.com>
> Reviewed-by: Saravana Kannan <saravanak@google.com>
> ---
>  drivers/gpu/drm/drm_mipi_dsi.c | 1 +
>  1 file changed, 1 insertion(+)
>
> v2:
>  Thanks Saravana for the comments! I updated the commit message and added your
>  reviewed-by.
>
> diff --git a/drivers/gpu/drm/drm_mipi_dsi.c b/drivers/gpu/drm/drm_mipi_dsi.c
> index 5dd475e82995..469d56cf2a50 100644
> --- a/drivers/gpu/drm/drm_mipi_dsi.c
> +++ b/drivers/gpu/drm/drm_mipi_dsi.c
> @@ -222,6 +222,7 @@ mipi_dsi_device_register_full(struct mipi_dsi_host *host,
>         }
>
>         dsi->dev.of_node = info->node;
> +       dsi->dev.fwnode = of_fwnode_handle(info->node);
>         dsi->channel = info->channel;
>         strlcpy(dsi->name, info->type, sizeof(dsi->name));
>
> --
> 2.32.0.402.g57bb445576-goog
>
diff mbox series

Patch

diff --git a/drivers/gpu/drm/drm_mipi_dsi.c b/drivers/gpu/drm/drm_mipi_dsi.c
index 5dd475e82995..469d56cf2a50 100644
--- a/drivers/gpu/drm/drm_mipi_dsi.c
+++ b/drivers/gpu/drm/drm_mipi_dsi.c
@@ -222,6 +222,7 @@  mipi_dsi_device_register_full(struct mipi_dsi_host *host,
 	}
 
 	dsi->dev.of_node = info->node;
+	dsi->dev.fwnode = of_fwnode_handle(info->node);
 	dsi->channel = info->channel;
 	strlcpy(dsi->name, info->type, sizeof(dsi->name));