linux-tegra.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 1/1] staging: media: tegra-video: Replace custom implementation of device_match_fwnode()
@ 2022-09-27 17:30 Andy Shevchenko
  2022-11-14  9:48 ` Andy Shevchenko
  0 siblings, 1 reply; 4+ messages in thread
From: Andy Shevchenko @ 2022-09-27 17:30 UTC (permalink / raw)
  To: Sakari Ailus, linux-media, linux-tegra, linux-staging,
	linux-kernel
  Cc: Thierry Reding, Jonathan Hunter, Sowjanya Komatineni,
	Mauro Carvalho Chehab, Greg Kroah-Hartman, Andy Shevchenko

Replace custom implementation of the device_match_fwnode().

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 drivers/staging/media/tegra-video/vi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/media/tegra-video/vi.c b/drivers/staging/media/tegra-video/vi.c
index 9d46a36cc014..11dd142c98c5 100644
--- a/drivers/staging/media/tegra-video/vi.c
+++ b/drivers/staging/media/tegra-video/vi.c
@@ -1811,7 +1811,7 @@ static int tegra_vi_graph_parse_one(struct tegra_vi_channel *chan,
 		}
 
 		/* skip entities that are already processed */
-		if (remote == dev_fwnode(vi->dev) ||
+		if (device_match_fwnode(vi->dev, remote) ||
 		    tegra_vi_graph_find_entity(chan, remote)) {
 			fwnode_handle_put(remote);
 			continue;
-- 
2.35.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v1 1/1] staging: media: tegra-video: Replace custom implementation of device_match_fwnode()
  2022-09-27 17:30 [PATCH v1 1/1] staging: media: tegra-video: Replace custom implementation of device_match_fwnode() Andy Shevchenko
@ 2022-11-14  9:48 ` Andy Shevchenko
  2022-11-14  9:50   ` Sakari Ailus
  0 siblings, 1 reply; 4+ messages in thread
From: Andy Shevchenko @ 2022-11-14  9:48 UTC (permalink / raw)
  To: Sakari Ailus, linux-media, linux-tegra, linux-staging,
	linux-kernel
  Cc: Thierry Reding, Jonathan Hunter, Sowjanya Komatineni,
	Mauro Carvalho Chehab, Greg Kroah-Hartman

On Tue, Sep 27, 2022 at 08:30:11PM +0300, Andy Shevchenko wrote:
> Replace custom implementation of the device_match_fwnode().

Sakari, here you are in Cc list and I never have any response on this patch.

Maybe something wrong with emails somewhere?

-- 
With Best Regards,
Andy Shevchenko



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v1 1/1] staging: media: tegra-video: Replace custom implementation of device_match_fwnode()
  2022-11-14  9:48 ` Andy Shevchenko
@ 2022-11-14  9:50   ` Sakari Ailus
  2022-11-14 10:20     ` Andy Shevchenko
  0 siblings, 1 reply; 4+ messages in thread
From: Sakari Ailus @ 2022-11-14  9:50 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: linux-media, linux-tegra, linux-staging, linux-kernel,
	Thierry Reding, Jonathan Hunter, Sowjanya Komatineni,
	Mauro Carvalho Chehab, Greg Kroah-Hartman

Hi Andy,

On Mon, Nov 14, 2022 at 11:48:19AM +0200, Andy Shevchenko wrote:
> On Tue, Sep 27, 2022 at 08:30:11PM +0300, Andy Shevchenko wrote:
> > Replace custom implementation of the device_match_fwnode().
> 
> Sakari, here you are in Cc list and I never have any response on this patch.
> 
> Maybe something wrong with emails somewhere?

You should have received a notification from Patchwork the patch is "under
review".

It's in my PR to Mauro now:

<URL:https://patchwork.linuxtv.org/project/linux-media/patch/Y3IJwomIow2+vdMh@valkosipuli.retiisi.eu/>

-- 
Kind regards,

Sakari Ailus

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v1 1/1] staging: media: tegra-video: Replace custom implementation of device_match_fwnode()
  2022-11-14  9:50   ` Sakari Ailus
@ 2022-11-14 10:20     ` Andy Shevchenko
  0 siblings, 0 replies; 4+ messages in thread
From: Andy Shevchenko @ 2022-11-14 10:20 UTC (permalink / raw)
  To: Sakari Ailus
  Cc: linux-media, linux-tegra, linux-staging, linux-kernel,
	Thierry Reding, Jonathan Hunter, Sowjanya Komatineni,
	Mauro Carvalho Chehab, Greg Kroah-Hartman

On Mon, Nov 14, 2022 at 09:50:44AM +0000, Sakari Ailus wrote:
> On Mon, Nov 14, 2022 at 11:48:19AM +0200, Andy Shevchenko wrote:
> > On Tue, Sep 27, 2022 at 08:30:11PM +0300, Andy Shevchenko wrote:
> > > Replace custom implementation of the device_match_fwnode().
> > 
> > Sakari, here you are in Cc list and I never have any response on this patch.
> > 
> > Maybe something wrong with emails somewhere?
> 
> You should have received a notification from Patchwork the patch is "under
> review".

It it was one, it was not a separate (per patch basis), so I may definitely
missed it.

> It's in my PR to Mauro now:
> 
> <URL:https://patchwork.linuxtv.org/project/linux-media/patch/Y3IJwomIow2+vdMh@valkosipuli.retiisi.eu/>

Thank you!

-- 
With Best Regards,
Andy Shevchenko



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-11-14 10:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-27 17:30 [PATCH v1 1/1] staging: media: tegra-video: Replace custom implementation of device_match_fwnode() Andy Shevchenko
2022-11-14  9:48 ` Andy Shevchenko
2022-11-14  9:50   ` Sakari Ailus
2022-11-14 10:20     ` Andy Shevchenko

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).