diff options
author | Todor Tomov <ttomov@mm-sol.com> | 2011-01-25 17:46:40 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2011-02-07 15:31:19 +0100 |
commit | 9a244f7792d81a39b0240d5d4ee50e6452b7ce8e (patch) | |
tree | 0d035b3e8aa3a7e1afdf25955acfcc5f07fdcccc /media.h | |
parent | 0c37eafbbcd3170992858f265a10a5f4f23736dd (diff) |
Add media_entity_type() to media.h and make it inline.
Signed-off-by: Todor Tomov <ttomov@mm-sol.com>
Diffstat (limited to 'media.h')
-rw-r--r-- | media.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -54,6 +54,11 @@ void media_close(struct media_device *media); struct media_entity_pad *media_entity_remote_pad(struct media_entity_pad *pad); +static inline unsigned int media_entity_type(struct media_entity *entity) +{ + return entity->info.type & MEDIA_ENTITY_TYPE_MASK; +} + struct media_entity *media_get_entity_by_name(struct media_device *media, const char *name, size_t length); struct media_entity *media_get_entity_by_id(struct media_device *media, |