media: v4l2-fwnode: Print the node name while parsing endpoints
authorSakari Ailus <sakari.ailus@linux.intel.com>
Mon, 21 Oct 2019 07:29:26 +0000 (09:29 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Thu, 23 Jan 2020 14:49:45 +0000 (15:49 +0100)
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>
drivers/media/v4l2-core/v4l2-fwnode.c

index 192cac076761b5c1a7abf0539b71e8424268825f..6ece4320e1d2abd9c3676f61d0ead0a4e44b853e 100644 (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;
 }