Print the node name during endpoint parsing for better debuggability.

Depends-on: ("lib/vsprintf: Add %pfw conversion specifier for printing fwnode 
names")
Signed-off-by: Sakari Ailus <sakari.ai...@linux.intel.com>
---
 drivers/media/v4l2-core/v4l2-fwnode.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/media/v4l2-core/v4l2-fwnode.c 
b/drivers/media/v4l2-core/v4l2-fwnode.c
index 3bd1888787eb3..ac2848d02a7c7 100644
--- a/drivers/media/v4l2-core/v4l2-fwnode.c
+++ b/drivers/media/v4l2-core/v4l2-fwnode.c
@@ -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;
 }
@@ -550,7 +550,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;
 }
-- 
2.20.1

Reply via email to