]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
of/platform: Inform about created platform devices using pr_debug()
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Thu, 22 Feb 2024 15:31:20 +0000 (16:31 +0100)
committerRob Herring <robh@kernel.org>
Fri, 1 Mar 2024 21:53:41 +0000 (15:53 -0600)
For most nodes with a compatible property a platform device is created.
For some an amba device is created instead. For the latter
of_amba_device_create() emits a message at debug level about the node
the device is created from. Add a similar message to
of_platform_device_create_pdata() to inform about the whole list of
created devices.

This also gives the right context for the following messages that
inform about created child devices.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20240222153119.2026363-2-u.kleine-koenig@pengutronix.de
Signed-off-by: Rob Herring <robh@kernel.org>
drivers/of/platform.c

index b7708a06dc7844d2a4ee5eb67b1d3970c78b30df..ba964df6b6db10d9a8c912d18164ffb96f3a4859 100644 (file)
@@ -166,6 +166,8 @@ static struct platform_device *of_platform_device_create_pdata(
 {
        struct platform_device *dev;
 
+       pr_debug("create platform device: %pOF\n", np);
+
        if (!of_device_is_available(np) ||
            of_node_test_and_set_flag(np, OF_POPULATED))
                return NULL;