diff options
author | Ian Jamison <[email protected]> | 2022-04-08 18:53:45 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <[email protected]> | 2022-04-24 08:28:16 +0100 |
commit | 3c9b04d9631ef49e8b3aad72607b09099c18e40d (patch) | |
tree | 334d81f2b0276b5565112deda9ed3960245e779f | |
parent | 3d22dd432889f2f538b53f36f9f6bcd54825fc22 (diff) |
media: media-entity.h: Fix documentation for media_create_intf_link
The documentation comment was inserted between the return type
and the function name. Reunite the lines.
Signed-off-by: Ian Jamison <[email protected]>
Fixes: db7ee32aa185 ("[media] media-device.h: Improve documentation and update it")
Reviewed-by: Kieran Bingham <[email protected]>
Reviewed-by: Laurent Pinchart <[email protected]>
Signed-off-by: Sakari Ailus <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
-rw-r--r-- | include/media/media-entity.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/media/media-entity.h b/include/media/media-entity.h index 1d13b8939a11..a9a1c0ec5d1c 100644 --- a/include/media/media-entity.h +++ b/include/media/media-entity.h @@ -1030,7 +1030,6 @@ __must_check media_devnode_create(struct media_device *mdev, * removed. */ void media_devnode_remove(struct media_intf_devnode *devnode); -struct media_link * /** * media_create_intf_link() - creates a link between an entity and an interface @@ -1061,6 +1060,7 @@ struct media_link * * the interface and media_device_register_entity() should be called for the * interface that will be part of the link. */ +struct media_link * __must_check media_create_intf_link(struct media_entity *entity, struct media_interface *intf, u32 flags); |