media: v4l2-fwnode: Print the node name while parsing endpoints

Print the node name during endpoint parsing for better debuggability.

Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
Sakari Ailus 2019-10-21 09:29:26 +02:00 committed by Mauro Carvalho Chehab
parent 0b09f98987
commit 5adf3edde8

View file

@ -422,7 +422,7 @@ static int __v4l2_fwnode_endpoint_parse(struct fwnode_handle *fwnode,
sizeof(*vep) - offsetof(typeof(*vep), bus));
}
pr_debug("===== begin V4L2 endpoint properties\n");
pr_debug("===== begin parsing endpoint %pfw\n", fwnode);
/*
* Zero the fwnode graph endpoint memory in case we don't end up parsing
@ -500,7 +500,7 @@ int v4l2_fwnode_endpoint_parse(struct fwnode_handle *fwnode,
ret = __v4l2_fwnode_endpoint_parse(fwnode, vep);
pr_debug("===== end V4L2 endpoint properties\n");
pr_debug("===== end parsing endpoint %pfw\n", fwnode);
return ret;
}
@ -551,7 +551,7 @@ int v4l2_fwnode_endpoint_alloc_parse(struct fwnode_handle *fwnode,
vep->link_frequencies[i]);
}
pr_debug("===== end V4L2 endpoint properties\n");
pr_debug("===== end parsing endpoint %pfw\n", fwnode);
return 0;
}