[media] media: report if a pad is sink or source at debug msg

Sometimes, it is important to see if the created pad is
sink or source. Add info to track that.

Acked-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
Mauro Carvalho Chehab 2015-08-21 18:26:42 -03:00
parent df2f94e563
commit 6c24d4602e
1 changed files with 5 additions and 2 deletions

View File

@ -109,8 +109,11 @@ static void dev_dbg_obj(const char *event_name, struct media_gobj *gobj)
struct media_pad *pad = gobj_to_pad(gobj);
dev_dbg(gobj->mdev->dev,
"%s: id 0x%08x pad#%d: '%s':%d\n",
event_name, gobj->id, media_localid(gobj),
"%s: id 0x%08x %s%spad#%d: '%s':%d\n",
event_name, gobj->id,
pad->flags & MEDIA_PAD_FL_SINK ? " sink " : "",
pad->flags & MEDIA_PAD_FL_SOURCE ? "source " : "",
media_localid(gobj),
pad->entity->name, pad->index);
break;
}