diff options
author | Andrzej Hajda <a.hajda@samsung.com> | 2013-06-03 05:16:13 -0300 |
---|---|---|
committer | Chanho Park <chanho61.park@samsung.com> | 2014-11-18 11:43:00 +0900 |
commit | 14937a74039bdb5605207e30a6782a038d9d4ac9 (patch) | |
tree | 8f19043294f6b9b57a65dd78e159fa06f4c8d880 /include | |
parent | 8705401a3eee31af80d81c1ef779c47e1a66e39e (diff) | |
download | linux-3.10-14937a74039bdb5605207e30a6782a038d9d4ac9.tar.gz linux-3.10-14937a74039bdb5605207e30a6782a038d9d4ac9.tar.bz2 linux-3.10-14937a74039bdb5605207e30a6782a038d9d4ac9.zip |
[media] media: Rename media_entity_remote_source to media_entity_remote_pad
Function media_entity_remote_source actually returns the remote pad to
the given one, regardless if this is the source or the sink pad.
Name media_entity_remote_pad is more adequate for this function.
Signed-off-by: Andrzej Hajda <a.hajda@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Acked-by: Sakari Ailus <sakari.ailus@iki.fi>
Acked-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include')
-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 0c16f518ee0..4eefedcaa66 100644 --- a/include/media/media-entity.h +++ b/include/media/media-entity.h @@ -132,7 +132,7 @@ int __media_entity_setup_link(struct media_link *link, u32 flags); int media_entity_setup_link(struct media_link *link, u32 flags); struct media_link *media_entity_find_link(struct media_pad *source, struct media_pad *sink); -struct media_pad *media_entity_remote_source(struct media_pad *pad); +struct media_pad *media_entity_remote_pad(struct media_pad *pad); struct media_entity *media_entity_get(struct media_entity *entity); void media_entity_put(struct media_entity *entity); |