diff mbox series

[v2,08/30] discover: Add some debug print messages

Message ID 070c0dda4ceb08f26f97445b17332726ef2ceeaf.1533230644.git.geoff@infradead.org
State Accepted
Headers show
Series [v2,01/30] docker: Add libfdt-dev | expand

Commit Message

Geoff Levand Aug. 2, 2018, 5:29 p.m. UTC
To aid in debugging print some additinal discover messages
to the log.

Signed-off-by: Geoff Levand <geoff@infradead.org>
---
 discover/device-handler.c | 1 +
 discover/platform.c       | 1 +
 2 files changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/discover/device-handler.c b/discover/device-handler.c
index 1299c33..9c05029 100644
--- a/discover/device-handler.c
+++ b/discover/device-handler.c
@@ -522,6 +522,7 @@  void device_handler_remove(struct device_handler *handler,
 void device_handler_status(struct device_handler *handler,
 		struct status *status)
 {
+	pb_debug("%s: %s\n", __func__, status->message);
 	discover_server_notify_boot_status(handler->server, status);
 }
 
diff --git a/discover/platform.c b/discover/platform.c
index cc6306f..e69c6f6 100644
--- a/discover/platform.c
+++ b/discover/platform.c
@@ -166,6 +166,7 @@  int platform_init(void *ctx)
 	platform_ctx = talloc_new(ctx);
 
 	for (p = &__start_platforms; p < &__stop_platforms; p++) {
+		pb_debug("%s: Try platform %s\n", __func__, (*p)->name);
 		if (!(*p)->probe(*p, platform_ctx))
 			continue;
 		platform = *p;