aboutsummaryrefslogtreecommitdiffstats
path: root/include/media
diff options
context:
space:
mode:
authorSteve Longerbeam <slongerbeam@gmail.com>2020-05-01 19:15:35 +0200
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>2020-05-18 11:12:05 +0200
commit70d4a9efee9cdd580207473379e3ee64b331ae75 (patch)
tree64cecf23c9608a8390253f3dbc158d4fafc219cb /include/media
parentmedia: i2c: imx219: Fix a bug in imx219_enum_frame_size (diff)
downloadlinux-dev-70d4a9efee9cdd580207473379e3ee64b331ae75.tar.xz
linux-dev-70d4a9efee9cdd580207473379e3ee64b331ae75.zip
media: entity: Pass entity to get_fwnode_pad operation
Add a missing pointer to the entity in the media_entity operation get_fwnode_pad. There are no implementers of this op yet, but a future entity that does so will almost certainly need a reference to itself to carry out the work. operation") Fixes: ae45cd5efc120 ("[media] media: entity: Add get_fwnode_pad entity Signed-off-by: Steve Longerbeam <slongerbeam@gmail.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'include/media')
-rw-r--r--include/media/media-entity.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/media/media-entity.h b/include/media/media-entity.h
index 8cb2c504a05c..cde80ad029b7 100644
--- a/include/media/media-entity.h
+++ b/include/media/media-entity.h
@@ -212,7 +212,8 @@ struct media_pad {
* mutex held.
*/
struct media_entity_operations {
- int (*get_fwnode_pad)(struct fwnode_endpoint *endpoint);
+ int (*get_fwnode_pad)(struct media_entity *entity,
+ struct fwnode_endpoint *endpoint);
int (*link_setup)(struct media_entity *entity,
const struct media_pad *local,
const struct media_pad *remote, u32 flags);