diff options
| author | Laurent Pinchart <[email protected]> | 2022-03-21 14:51:34 +0000 |
|---|---|---|
| committer | Mauro Carvalho Chehab <[email protected]> | 2022-04-24 07:13:07 +0000 |
| commit | 1f391df446077d62514ee29f75970dff3d55a432 (patch) | |
| tree | cbca827092da21aa8a42e778b331cb75feb276f7 /drivers/media/v4l2-core/v4l2-async.c | |
| parent | media: staging: media: ipu3-imgu: Request specific firmware binary (diff) | |
| download | kernel-1f391df446077d62514ee29f75970dff3d55a432.tar.gz kernel-1f391df446077d62514ee29f75970dff3d55a432.zip | |
media: v4l2-async: Use endpoints in __v4l2_async_nf_add_fwnode_remote()
Matching on device fwnode handles is deprecated in favour of endpoint
fwnode handles. Switch the __v4l2_async_nf_add_fwnode_remote() function
to use the latter. The match code handles backward compatibility by
falling by to the device fwnode handle, so this shouldn't introduce any
regression.
Signed-off-by: Laurent Pinchart <[email protected]>
Signed-off-by: Sakari Ailus <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
Diffstat (limited to 'drivers/media/v4l2-core/v4l2-async.c')
| -rw-r--r-- | drivers/media/v4l2-core/v4l2-async.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/v4l2-core/v4l2-async.c b/drivers/media/v4l2-core/v4l2-async.c index 436bd6900fd8..c6995718237a 100644 --- a/drivers/media/v4l2-core/v4l2-async.c +++ b/drivers/media/v4l2-core/v4l2-async.c @@ -693,7 +693,7 @@ __v4l2_async_nf_add_fwnode_remote(struct v4l2_async_notifier *notif, struct v4l2_async_subdev *asd; struct fwnode_handle *remote; - remote = fwnode_graph_get_remote_port_parent(endpoint); + remote = fwnode_graph_get_remote_endpoint(endpoint); if (!remote) return ERR_PTR(-ENOTCONN); |
