LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] drm/rockchip: rgb: don't count non-existent devices when determining subdrivers
@ 2020-01-21 22:48 Heiko Stuebner
2020-03-10 9:53 ` Miquel Raynal
2020-03-11 9:00 ` Heiko Stuebner
0 siblings, 2 replies; 3+ messages in thread
From: Heiko Stuebner @ 2020-01-21 22:48 UTC (permalink / raw)
To: hjc
Cc: dri-devel, linux-arm-kernel, linux-rockchip, linux-kernel,
miquel.raynal, christoph.muellner, heiko, Heiko Stuebner
From: Heiko Stuebner <heiko.stuebner@theobroma-systems.com>
rockchip_drm_endpoint_is_subdriver() may also return error codes.
For example if the target-node is in the disabled state, so no
platform-device is getting created for it.
In that case current code would count that as external rgb device,
which in turn would make probing the rockchip-drm device fail.
So only count the target as rgb device if the function actually
returns 0.
Signed-off-by: Heiko Stuebner <heiko.stuebner@theobroma-systems.com>
---
drivers/gpu/drm/rockchip/rockchip_rgb.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/rockchip/rockchip_rgb.c b/drivers/gpu/drm/rockchip/rockchip_rgb.c
index ae730275a34f..79a7e60633e0 100644
--- a/drivers/gpu/drm/rockchip/rockchip_rgb.c
+++ b/drivers/gpu/drm/rockchip/rockchip_rgb.c
@@ -98,7 +98,8 @@ struct rockchip_rgb *rockchip_rgb_init(struct device *dev,
if (of_property_read_u32(endpoint, "reg", &endpoint_id))
endpoint_id = 0;
- if (rockchip_drm_endpoint_is_subdriver(endpoint) > 0)
+ /* if subdriver (> 0) or error case (< 0), ignore entry */
+ if (rockchip_drm_endpoint_is_subdriver(endpoint) != 0)
continue;
child_count++;
--
2.24.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] drm/rockchip: rgb: don't count non-existent devices when determining subdrivers
2020-01-21 22:48 [PATCH] drm/rockchip: rgb: don't count non-existent devices when determining subdrivers Heiko Stuebner
@ 2020-03-10 9:53 ` Miquel Raynal
2020-03-11 9:00 ` Heiko Stuebner
1 sibling, 0 replies; 3+ messages in thread
From: Miquel Raynal @ 2020-03-10 9:53 UTC (permalink / raw)
To: Heiko Stuebner
Cc: hjc, dri-devel, linux-arm-kernel, linux-rockchip, linux-kernel,
christoph.muellner, Heiko Stuebner
Hi Heiko,
Heiko Stuebner <heiko@sntech.de> wrote on Tue, 21 Jan 2020 23:48:28
+0100:
> From: Heiko Stuebner <heiko.stuebner@theobroma-systems.com>
>
> rockchip_drm_endpoint_is_subdriver() may also return error codes.
> For example if the target-node is in the disabled state, so no
> platform-device is getting created for it.
>
> In that case current code would count that as external rgb device,
> which in turn would make probing the rockchip-drm device fail.
>
> So only count the target as rgb device if the function actually
> returns 0.
>
> Signed-off-by: Heiko Stuebner <heiko.stuebner@theobroma-systems.com>
> ---
> drivers/gpu/drm/rockchip/rockchip_rgb.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/rockchip/rockchip_rgb.c b/drivers/gpu/drm/rockchip/rockchip_rgb.c
> index ae730275a34f..79a7e60633e0 100644
> --- a/drivers/gpu/drm/rockchip/rockchip_rgb.c
> +++ b/drivers/gpu/drm/rockchip/rockchip_rgb.c
> @@ -98,7 +98,8 @@ struct rockchip_rgb *rockchip_rgb_init(struct device *dev,
> if (of_property_read_u32(endpoint, "reg", &endpoint_id))
> endpoint_id = 0;
>
> - if (rockchip_drm_endpoint_is_subdriver(endpoint) > 0)
> + /* if subdriver (> 0) or error case (< 0), ignore entry */
> + if (rockchip_drm_endpoint_is_subdriver(endpoint) != 0)
> continue;
>
> child_count++;
Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
Thanks,
Miquèl
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] drm/rockchip: rgb: don't count non-existent devices when determining subdrivers
2020-01-21 22:48 [PATCH] drm/rockchip: rgb: don't count non-existent devices when determining subdrivers Heiko Stuebner
2020-03-10 9:53 ` Miquel Raynal
@ 2020-03-11 9:00 ` Heiko Stuebner
1 sibling, 0 replies; 3+ messages in thread
From: Heiko Stuebner @ 2020-03-11 9:00 UTC (permalink / raw)
To: hjc
Cc: dri-devel, linux-arm-kernel, linux-rockchip, linux-kernel,
miquel.raynal, christoph.muellner
Am Dienstag, 21. Januar 2020, 23:48:28 CET schrieb Heiko Stuebner:
> From: Heiko Stuebner <heiko.stuebner@theobroma-systems.com>
>
> rockchip_drm_endpoint_is_subdriver() may also return error codes.
> For example if the target-node is in the disabled state, so no
> platform-device is getting created for it.
>
> In that case current code would count that as external rgb device,
> which in turn would make probing the rockchip-drm device fail.
>
> So only count the target as rgb device if the function actually
> returns 0.
>
> Signed-off-by: Heiko Stuebner <heiko.stuebner@theobroma-systems.com>
applied to drm-misc-next
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-03-11 9:00 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-21 22:48 [PATCH] drm/rockchip: rgb: don't count non-existent devices when determining subdrivers Heiko Stuebner
2020-03-10 9:53 ` Miquel Raynal
2020-03-11 9:00 ` Heiko Stuebner
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).