1
0
Fork 0

[media] media: Correctly notify about the failed pipeline validation

On the place of the source entity name, the sink entity name was printed.

Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
steinar/wifi_calib_4_9_kernel
Sakari Ailus 2015-02-12 11:43:11 -02:00 committed by Mauro Carvalho Chehab
parent 78c66fbcec
commit 823ea2a639
1 changed files with 3 additions and 3 deletions

View File

@ -282,9 +282,9 @@ __must_check int media_entity_pipeline_start(struct media_entity *entity,
if (ret < 0 && ret != -ENOIOCTLCMD) {
dev_dbg(entity->parent->dev,
"link validation failed for \"%s\":%u -> \"%s\":%u, error %d\n",
entity->name, link->source->index,
link->sink->entity->name,
link->sink->index, ret);
link->source->entity->name,
link->source->index,
entity->name, link->sink->index, ret);
goto error;
}
}