From: Jeremy Kerr Date: Mon, 12 Dec 2016 09:34:42 +0000 (+0800) Subject: discover/status: remove completion messages X-Git-Tag: v1.4.0~19 X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=commitdiff_plain;h=5668d29abb1da87c1feaf90d4206a4b2b7ab00f5;ds=sidebyside discover/status: remove completion messages The completion messages are unconditional, so don't really indicate anything. In fact, the dhcp completion status is misleading, as we may still be processing the context through pxe callbacks. Signed-off-by: Jeremy Kerr Signed-off-by: Samuel Mendoza-Jonas --- diff --git a/discover/device-handler.c b/discover/device-handler.c index f8b7bf5..5f63a6e 100644 --- a/discover/device-handler.c +++ b/discover/device-handler.c @@ -940,8 +940,6 @@ int device_handler_discover(struct device_handler *handler, device_handler_discover_context_commit(handler, ctx); out: - device_handler_status_dev_info(handler, dev, _("Processing complete")); - talloc_unlink(handler, ctx); return 0; @@ -965,8 +963,6 @@ int device_handler_dhcp(struct device_handler *handler, device_handler_discover_context_commit(handler, ctx); - device_handler_status_dev_info(handler, dev, _("Processing complete")); - talloc_unlink(handler, ctx); return 0;