From: Paul Cercueil <paul@crapouillou.net>
To: Yong Wu <yong.wu@mediatek.com>
Cc: David Airlie <airlied@linux.ie>,
Liviu Dudau <liviu.dudau@arm.com>,
dri-devel@lists.freedesktop.org,
Sebastian Reichel <sre@kernel.org>,
Srinivas Kandagatla <srinivas.kandagatla@linaro.org>,
Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
Will Deacon <will@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>,
James Wang <james.qian.wang@arm.com>,
linux-mips@vger.kernel.org,
Chun-Kuang Hu <chunkuang.hu@kernel.org>,
Arnd Bergmann <arnd@arndb.de>,
linux-mediatek@lists.infradead.org,
Hsin-Yi Wang <hsinyi@chromium.org>,
Matthias Brugger <matthias.bgg@gmail.com>,
linux-arm-kernel@lists.infradead.org,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>,
srv_heupstream@mediatek.com, Stephen Boyd <sboyd@kernel.org>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
linux-kernel@vger.kernel.org, iommu@lists.linux-foundation.org,
Daniel Vetter <daniel@ffwll.ch>,
Robin Murphy <robin.murphy@arm.com>
Subject: Re: [PATCH 06/23] drm/ingenic: Make use of the helper component_compare_of
Date: Mon, 14 Feb 2022 10:03:01 +0000 [thread overview]
Message-ID: <19HA7R.NEIIBC5SNORY1@crapouillou.net> (raw)
In-Reply-To: <20220214060819.7334-7-yong.wu@mediatek.com>
Hi,
Le lun., févr. 14 2022 at 14:08:02 +0800, Yong Wu
<yong.wu@mediatek.com> a écrit :
> Use the common compare helper from component.
>
> Cc: Paul Cercueil <paul@crapouillou.net>
> Cc: linux-mips@vger.kernel.org
> Signed-off-by: Yong Wu <yong.wu@mediatek.com>
Acked-by: Paul Cercueil <paul@crapouillou.net>
Cheers,
-Paul
> ---
> drivers/gpu/drm/ingenic/ingenic-drm-drv.c | 7 +------
> 1 file changed, 1 insertion(+), 6 deletions(-)
>
> diff --git a/drivers/gpu/drm/ingenic/ingenic-drm-drv.c
> b/drivers/gpu/drm/ingenic/ingenic-drm-drv.c
> index b4943a56be09..23b8f012b418 100644
> --- a/drivers/gpu/drm/ingenic/ingenic-drm-drv.c
> +++ b/drivers/gpu/drm/ingenic/ingenic-drm-drv.c
> @@ -1322,11 +1322,6 @@ static int
> ingenic_drm_bind_with_components(struct device *dev)
> return ingenic_drm_bind(dev, true);
> }
>
> -static int compare_of(struct device *dev, void *data)
> -{
> - return dev->of_node == data;
> -}
> -
> static void ingenic_drm_unbind(struct device *dev)
> {
> struct ingenic_drm *priv = dev_get_drvdata(dev);
> @@ -1360,7 +1355,7 @@ static int ingenic_drm_probe(struct
> platform_device *pdev)
> if (!np)
> return ingenic_drm_bind(dev, false);
>
> - drm_of_component_match_add(dev, &match, compare_of, np);
> + drm_of_component_match_add(dev, &match, component_compare_of, np);
> of_node_put(np);
>
> return component_master_add_with_match(dev, &ingenic_master_ops,
> match);
> --
> 2.18.0
>
_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu
WARNING: multiple messages have this Message-ID (diff)
From: Paul Cercueil <paul@crapouillou.net>
To: Yong Wu <yong.wu@mediatek.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
David Airlie <airlied@linux.ie>, Daniel Vetter <daniel@ffwll.ch>,
dri-devel@lists.freedesktop.org,
James Wang <james.qian.wang@arm.com>,
Liviu Dudau <liviu.dudau@arm.com>,
iommu@lists.linux-foundation.org,
Matthias Brugger <matthias.bgg@gmail.com>,
Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>,
linux-kernel@vger.kernel.org, Joerg Roedel <joro@8bytes.org>,
Will Deacon <will@kernel.org>, Arnd Bergmann <arnd@arndb.de>,
Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
linux-mediatek@lists.infradead.org,
Chun-Kuang Hu <chunkuang.hu@kernel.org>,
linux-arm-kernel@lists.infradead.org,
Stephen Boyd <sboyd@kernel.org>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>,
Hsin-Yi Wang <hsinyi@chromium.org>,
Robin Murphy <robin.murphy@arm.com>,
Tomasz Figa <tfiga@chromium.org>,
srv_heupstream@mediatek.com, Rob Clark <robdclark@gmail.com>,
Srinivas Kandagatla <srinivas.kandagatla@linaro.org>,
Sebastian Reichel <sre@kernel.org>,
linux-mips@vger.kernel.org
Subject: Re: [PATCH 06/23] drm/ingenic: Make use of the helper component_compare_of
Date: Mon, 14 Feb 2022 10:03:01 +0000 [thread overview]
Message-ID: <19HA7R.NEIIBC5SNORY1@crapouillou.net> (raw)
In-Reply-To: <20220214060819.7334-7-yong.wu@mediatek.com>
Hi,
Le lun., févr. 14 2022 at 14:08:02 +0800, Yong Wu
<yong.wu@mediatek.com> a écrit :
> Use the common compare helper from component.
>
> Cc: Paul Cercueil <paul@crapouillou.net>
> Cc: linux-mips@vger.kernel.org
> Signed-off-by: Yong Wu <yong.wu@mediatek.com>
Acked-by: Paul Cercueil <paul@crapouillou.net>
Cheers,
-Paul
> ---
> drivers/gpu/drm/ingenic/ingenic-drm-drv.c | 7 +------
> 1 file changed, 1 insertion(+), 6 deletions(-)
>
> diff --git a/drivers/gpu/drm/ingenic/ingenic-drm-drv.c
> b/drivers/gpu/drm/ingenic/ingenic-drm-drv.c
> index b4943a56be09..23b8f012b418 100644
> --- a/drivers/gpu/drm/ingenic/ingenic-drm-drv.c
> +++ b/drivers/gpu/drm/ingenic/ingenic-drm-drv.c
> @@ -1322,11 +1322,6 @@ static int
> ingenic_drm_bind_with_components(struct device *dev)
> return ingenic_drm_bind(dev, true);
> }
>
> -static int compare_of(struct device *dev, void *data)
> -{
> - return dev->of_node == data;
> -}
> -
> static void ingenic_drm_unbind(struct device *dev)
> {
> struct ingenic_drm *priv = dev_get_drvdata(dev);
> @@ -1360,7 +1355,7 @@ static int ingenic_drm_probe(struct
> platform_device *pdev)
> if (!np)
> return ingenic_drm_bind(dev, false);
>
> - drm_of_component_match_add(dev, &match, compare_of, np);
> + drm_of_component_match_add(dev, &match, component_compare_of, np);
> of_node_put(np);
>
> return component_master_add_with_match(dev, &ingenic_master_ops,
> match);
> --
> 2.18.0
>
WARNING: multiple messages have this Message-ID (diff)
From: Paul Cercueil <paul@crapouillou.net>
To: Yong Wu <yong.wu@mediatek.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
David Airlie <airlied@linux.ie>, Daniel Vetter <daniel@ffwll.ch>,
dri-devel@lists.freedesktop.org,
James Wang <james.qian.wang@arm.com>,
Liviu Dudau <liviu.dudau@arm.com>,
iommu@lists.linux-foundation.org,
Matthias Brugger <matthias.bgg@gmail.com>,
Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>,
linux-kernel@vger.kernel.org, Joerg Roedel <joro@8bytes.org>,
Will Deacon <will@kernel.org>, Arnd Bergmann <arnd@arndb.de>,
Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
linux-mediatek@lists.infradead.org,
Chun-Kuang Hu <chunkuang.hu@kernel.org>,
linux-arm-kernel@lists.infradead.org,
Stephen Boyd <sboyd@kernel.org>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>,
Hsin-Yi Wang <hsinyi@chromium.org>,
Robin Murphy <robin.murphy@arm.com>,
Tomasz Figa <tfiga@chromium.org>,
srv_heupstream@mediatek.com, Rob Clark <robdclark@gmail.com>,
Srinivas Kandagatla <srinivas.kandagatla@linaro.org>,
Sebastian Reichel <sre@kernel.org>,
linux-mips@vger.kernel.org
Subject: Re: [PATCH 06/23] drm/ingenic: Make use of the helper component_compare_of
Date: Mon, 14 Feb 2022 10:03:01 +0000 [thread overview]
Message-ID: <19HA7R.NEIIBC5SNORY1@crapouillou.net> (raw)
In-Reply-To: <20220214060819.7334-7-yong.wu@mediatek.com>
Hi,
Le lun., févr. 14 2022 at 14:08:02 +0800, Yong Wu
<yong.wu@mediatek.com> a écrit :
> Use the common compare helper from component.
>
> Cc: Paul Cercueil <paul@crapouillou.net>
> Cc: linux-mips@vger.kernel.org
> Signed-off-by: Yong Wu <yong.wu@mediatek.com>
Acked-by: Paul Cercueil <paul@crapouillou.net>
Cheers,
-Paul
> ---
> drivers/gpu/drm/ingenic/ingenic-drm-drv.c | 7 +------
> 1 file changed, 1 insertion(+), 6 deletions(-)
>
> diff --git a/drivers/gpu/drm/ingenic/ingenic-drm-drv.c
> b/drivers/gpu/drm/ingenic/ingenic-drm-drv.c
> index b4943a56be09..23b8f012b418 100644
> --- a/drivers/gpu/drm/ingenic/ingenic-drm-drv.c
> +++ b/drivers/gpu/drm/ingenic/ingenic-drm-drv.c
> @@ -1322,11 +1322,6 @@ static int
> ingenic_drm_bind_with_components(struct device *dev)
> return ingenic_drm_bind(dev, true);
> }
>
> -static int compare_of(struct device *dev, void *data)
> -{
> - return dev->of_node == data;
> -}
> -
> static void ingenic_drm_unbind(struct device *dev)
> {
> struct ingenic_drm *priv = dev_get_drvdata(dev);
> @@ -1360,7 +1355,7 @@ static int ingenic_drm_probe(struct
> platform_device *pdev)
> if (!np)
> return ingenic_drm_bind(dev, false);
>
> - drm_of_component_match_add(dev, &match, compare_of, np);
> + drm_of_component_match_add(dev, &match, component_compare_of, np);
> of_node_put(np);
>
> return component_master_add_with_match(dev, &ingenic_master_ops,
> match);
> --
> 2.18.0
>
_______________________________________________
Linux-mediatek mailing list
Linux-mediatek@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-mediatek
WARNING: multiple messages have this Message-ID (diff)
From: Paul Cercueil <paul@crapouillou.net>
To: Yong Wu <yong.wu@mediatek.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
David Airlie <airlied@linux.ie>, Daniel Vetter <daniel@ffwll.ch>,
dri-devel@lists.freedesktop.org,
James Wang <james.qian.wang@arm.com>,
Liviu Dudau <liviu.dudau@arm.com>,
iommu@lists.linux-foundation.org,
Matthias Brugger <matthias.bgg@gmail.com>,
Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>,
linux-kernel@vger.kernel.org, Joerg Roedel <joro@8bytes.org>,
Will Deacon <will@kernel.org>, Arnd Bergmann <arnd@arndb.de>,
Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
linux-mediatek@lists.infradead.org,
Chun-Kuang Hu <chunkuang.hu@kernel.org>,
linux-arm-kernel@lists.infradead.org,
Stephen Boyd <sboyd@kernel.org>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>,
Hsin-Yi Wang <hsinyi@chromium.org>,
Robin Murphy <robin.murphy@arm.com>,
Tomasz Figa <tfiga@chromium.org>,
srv_heupstream@mediatek.com, Rob Clark <robdclark@gmail.com>,
Srinivas Kandagatla <srinivas.kandagatla@linaro.org>,
Sebastian Reichel <sre@kernel.org>,
linux-mips@vger.kernel.org
Subject: Re: [PATCH 06/23] drm/ingenic: Make use of the helper component_compare_of
Date: Mon, 14 Feb 2022 10:03:01 +0000 [thread overview]
Message-ID: <19HA7R.NEIIBC5SNORY1@crapouillou.net> (raw)
In-Reply-To: <20220214060819.7334-7-yong.wu@mediatek.com>
Hi,
Le lun., févr. 14 2022 at 14:08:02 +0800, Yong Wu
<yong.wu@mediatek.com> a écrit :
> Use the common compare helper from component.
>
> Cc: Paul Cercueil <paul@crapouillou.net>
> Cc: linux-mips@vger.kernel.org
> Signed-off-by: Yong Wu <yong.wu@mediatek.com>
Acked-by: Paul Cercueil <paul@crapouillou.net>
Cheers,
-Paul
> ---
> drivers/gpu/drm/ingenic/ingenic-drm-drv.c | 7 +------
> 1 file changed, 1 insertion(+), 6 deletions(-)
>
> diff --git a/drivers/gpu/drm/ingenic/ingenic-drm-drv.c
> b/drivers/gpu/drm/ingenic/ingenic-drm-drv.c
> index b4943a56be09..23b8f012b418 100644
> --- a/drivers/gpu/drm/ingenic/ingenic-drm-drv.c
> +++ b/drivers/gpu/drm/ingenic/ingenic-drm-drv.c
> @@ -1322,11 +1322,6 @@ static int
> ingenic_drm_bind_with_components(struct device *dev)
> return ingenic_drm_bind(dev, true);
> }
>
> -static int compare_of(struct device *dev, void *data)
> -{
> - return dev->of_node == data;
> -}
> -
> static void ingenic_drm_unbind(struct device *dev)
> {
> struct ingenic_drm *priv = dev_get_drvdata(dev);
> @@ -1360,7 +1355,7 @@ static int ingenic_drm_probe(struct
> platform_device *pdev)
> if (!np)
> return ingenic_drm_bind(dev, false);
>
> - drm_of_component_match_add(dev, &match, compare_of, np);
> + drm_of_component_match_add(dev, &match, component_compare_of, np);
> of_node_put(np);
>
> return component_master_add_with_match(dev, &ingenic_master_ops,
> match);
> --
> 2.18.0
>
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
WARNING: multiple messages have this Message-ID (diff)
From: Paul Cercueil <paul@crapouillou.net>
To: Yong Wu <yong.wu@mediatek.com>
Cc: David Airlie <airlied@linux.ie>,
Liviu Dudau <liviu.dudau@arm.com>,
dri-devel@lists.freedesktop.org,
Sebastian Reichel <sre@kernel.org>,
Srinivas Kandagatla <srinivas.kandagatla@linaro.org>,
Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
Will Deacon <will@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>,
Joerg Roedel <joro@8bytes.org>,
James Wang <james.qian.wang@arm.com>,
linux-mips@vger.kernel.org,
Chun-Kuang Hu <chunkuang.hu@kernel.org>,
Arnd Bergmann <arnd@arndb.de>,
linux-mediatek@lists.infradead.org,
Hsin-Yi Wang <hsinyi@chromium.org>,
Matthias Brugger <matthias.bgg@gmail.com>,
linux-arm-kernel@lists.infradead.org,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>,
srv_heupstream@mediatek.com, Stephen Boyd <sboyd@kernel.org>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
linux-kernel@vger.kernel.org, Tomasz Figa <tfiga@chromium.org>,
iommu@lists.linux-foundation.org,
Robin Murphy <robin.murphy@arm.com>
Subject: Re: [PATCH 06/23] drm/ingenic: Make use of the helper component_compare_of
Date: Mon, 14 Feb 2022 10:03:01 +0000 [thread overview]
Message-ID: <19HA7R.NEIIBC5SNORY1@crapouillou.net> (raw)
In-Reply-To: <20220214060819.7334-7-yong.wu@mediatek.com>
Hi,
Le lun., févr. 14 2022 at 14:08:02 +0800, Yong Wu
<yong.wu@mediatek.com> a écrit :
> Use the common compare helper from component.
>
> Cc: Paul Cercueil <paul@crapouillou.net>
> Cc: linux-mips@vger.kernel.org
> Signed-off-by: Yong Wu <yong.wu@mediatek.com>
Acked-by: Paul Cercueil <paul@crapouillou.net>
Cheers,
-Paul
> ---
> drivers/gpu/drm/ingenic/ingenic-drm-drv.c | 7 +------
> 1 file changed, 1 insertion(+), 6 deletions(-)
>
> diff --git a/drivers/gpu/drm/ingenic/ingenic-drm-drv.c
> b/drivers/gpu/drm/ingenic/ingenic-drm-drv.c
> index b4943a56be09..23b8f012b418 100644
> --- a/drivers/gpu/drm/ingenic/ingenic-drm-drv.c
> +++ b/drivers/gpu/drm/ingenic/ingenic-drm-drv.c
> @@ -1322,11 +1322,6 @@ static int
> ingenic_drm_bind_with_components(struct device *dev)
> return ingenic_drm_bind(dev, true);
> }
>
> -static int compare_of(struct device *dev, void *data)
> -{
> - return dev->of_node == data;
> -}
> -
> static void ingenic_drm_unbind(struct device *dev)
> {
> struct ingenic_drm *priv = dev_get_drvdata(dev);
> @@ -1360,7 +1355,7 @@ static int ingenic_drm_probe(struct
> platform_device *pdev)
> if (!np)
> return ingenic_drm_bind(dev, false);
>
> - drm_of_component_match_add(dev, &match, compare_of, np);
> + drm_of_component_match_add(dev, &match, component_compare_of, np);
> of_node_put(np);
>
> return component_master_add_with_match(dev, &ingenic_master_ops,
> match);
> --
> 2.18.0
>
next prev parent reply other threads:[~2022-02-14 10:03 UTC|newest]
Thread overview: 163+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-14 6:07 [PATCH 00/23] component: Add common helpers for compare/release Yong Wu via iommu
2022-02-14 6:07 ` Yong Wu
2022-02-14 6:07 ` Yong Wu
2022-02-14 6:07 ` Yong Wu
2022-02-14 6:07 ` Yong Wu
2022-02-14 6:07 ` [PATCH 01/23] component: Add common helper for compare/release functions Yong Wu via iommu
2022-02-14 6:07 ` Yong Wu
2022-02-14 6:07 ` Yong Wu
2022-02-14 6:07 ` Yong Wu
2022-02-14 6:07 ` Yong Wu
2022-02-14 6:07 ` [PATCH 02/23] drm/komeda: Make use of the helper component_compare_of Yong Wu via iommu
2022-02-14 6:07 ` Yong Wu
2022-02-14 6:07 ` Yong Wu
2022-02-14 6:07 ` Yong Wu
2022-02-14 6:07 ` Yong Wu
2022-02-14 6:07 ` [PATCH 03/23] drm/armada: Make use of the helper component_compare_of/dev_name Yong Wu via iommu
2022-02-14 6:07 ` Yong Wu
2022-02-14 6:07 ` Yong Wu
2022-02-14 6:07 ` Yong Wu
2022-02-14 6:07 ` Yong Wu
2022-02-14 6:08 ` [PATCH 04/23] drm/etnaviv: " Yong Wu via iommu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` [PATCH 05/23] drm/hirin: Make use of the helper component_compare_of Yong Wu via iommu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` [PATCH 06/23] drm/ingenic: " Yong Wu via iommu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 10:03 ` Paul Cercueil [this message]
2022-02-14 10:03 ` Paul Cercueil
2022-02-14 10:03 ` Paul Cercueil
2022-02-14 10:03 ` Paul Cercueil
2022-02-14 10:03 ` Paul Cercueil
2022-02-14 6:08 ` [PATCH 07/23] drm/mediatek: " Yong Wu via iommu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` [PATCH 08/23] drm/meson: " Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu via iommu
2022-02-14 6:08 ` [PATCH 09/23] drm/msm: " Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu via iommu
2022-02-14 6:08 ` [PATCH 10/23] drm/sprd: " Yong Wu via iommu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` [PATCH 11/23] drm/sti: " Yong Wu via iommu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` [PATCH 12/23] drm/sun4i: " Yong Wu via iommu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` [PATCH 13/23] drm/rockchip: Make use of the helper component_compare_dev Yong Wu via iommu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 8:03 ` Heiko Stübner
2022-02-14 8:03 ` Heiko Stübner
2022-02-14 8:03 ` Heiko Stübner
2022-02-14 8:03 ` Heiko Stübner
2022-02-14 8:03 ` Heiko Stübner
2022-02-14 8:03 ` Heiko Stübner
2022-02-14 6:08 ` [PATCH 14/23] drm/exynos: " Yong Wu via iommu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` [PATCH 15/23] drm/mcde: " Yong Wu via iommu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` [PATCH 16/23] drm/omap: dss: " Yong Wu via iommu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` [PATCH 17/23] drm/vc4: " Yong Wu via iommu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` [PATCH 18/23] drm: of: Make use of the helper component_release_of Yong Wu via iommu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` [PATCH 19/23] iommu/mediatek: Make use of the helper component_compare/release_of Yong Wu via iommu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` [PATCH 20/23] ASoC: codecs: wcd938x: " Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu via iommu
2022-02-14 12:40 ` Mark Brown
2022-02-14 12:40 ` Mark Brown
2022-02-14 12:40 ` Mark Brown
2022-02-14 12:40 ` Mark Brown
2022-02-14 12:40 ` Mark Brown
2022-02-14 12:40 ` Mark Brown
2022-02-14 12:43 ` AngeloGioacchino Del Regno
2022-02-14 12:43 ` AngeloGioacchino Del Regno
2022-02-14 12:43 ` AngeloGioacchino Del Regno
2022-02-14 12:43 ` AngeloGioacchino Del Regno
2022-02-14 12:43 ` AngeloGioacchino Del Regno
2022-02-14 12:43 ` AngeloGioacchino Del Regno
2022-02-15 2:27 ` Yong Wu
2022-02-15 2:27 ` Yong Wu
2022-02-15 2:27 ` Yong Wu
2022-02-15 2:27 ` Yong Wu
2022-02-15 2:27 ` Yong Wu
2022-02-15 2:27 ` Yong Wu via iommu
2022-02-14 6:08 ` [PATCH 21/23] power: supply: ab8500: Make use of the helper component_compare_dev Yong Wu via iommu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` [PATCH 22/23] video: omapfb: dss: " Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu via iommu
2022-02-15 20:46 ` Helge Deller
2022-02-15 20:46 ` Helge Deller
2022-02-15 20:46 ` Helge Deller
2022-02-15 20:46 ` Helge Deller
2022-02-15 20:46 ` Helge Deller
2022-02-25 11:07 ` Greg Kroah-Hartman
2022-02-25 11:07 ` Greg Kroah-Hartman
2022-02-25 11:07 ` Greg Kroah-Hartman
2022-02-25 11:07 ` Greg Kroah-Hartman
2022-02-25 11:07 ` Greg Kroah-Hartman
2022-02-14 6:08 ` [PATCH 23/23] ALSA: hda/realtek: Make use of the helper component_compare_dev_name Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu
2022-02-14 6:08 ` Yong Wu via iommu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=19HA7R.NEIIBC5SNORY1@crapouillou.net \
--to=paul@crapouillou.net \
--cc=airlied@linux.ie \
--cc=angelogioacchino.delregno@collabora.com \
--cc=arnd@arndb.de \
--cc=chunkuang.hu@kernel.org \
--cc=daniel@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=gregkh@linuxfoundation.org \
--cc=hsinyi@chromium.org \
--cc=iommu@lists.linux-foundation.org \
--cc=james.qian.wang@arm.com \
--cc=krzysztof.kozlowski@canonical.com \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-mips@vger.kernel.org \
--cc=liviu.dudau@arm.com \
--cc=matthias.bgg@gmail.com \
--cc=robin.murphy@arm.com \
--cc=sboyd@kernel.org \
--cc=sre@kernel.org \
--cc=srinivas.kandagatla@linaro.org \
--cc=srv_heupstream@mediatek.com \
--cc=will@kernel.org \
--cc=yong.wu@mediatek.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.