summaryrefslogtreecommitdiffstats
path: root/discover
diff options
context:
space:
mode:
authorSamuel Mendoza-Jonas <sam.mj@au1.ibm.com>2015-04-30 16:38:31 +1000
committerSamuel Mendoza-Jonas <sam.mj@au1.ibm.com>2015-05-05 15:34:55 +1000
commita7307c0962b4de0e6459ea449939b79dfe1705cd (patch)
treee8636f2b15e3e2b2e039c1dc34e7abf258832238 /discover
parent120855d64d783aa3b3b0af23923da0169319c338 (diff)
downloadtalos-petitboot-a7307c0962b4de0e6459ea449939b79dfe1705cd.tar.gz
talos-petitboot-a7307c0962b4de0e6459ea449939b79dfe1705cd.zip
discover: Fix whitespace in discover_handler_conf
Signed-off-by: Samuel Mendoza-Jonas <sam.mj@au1.ibm.com>
Diffstat (limited to 'discover')
-rw-r--r--discover/device-handler.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/discover/device-handler.c b/discover/device-handler.c
index d95a37c..64095f1 100644
--- a/discover/device-handler.c
+++ b/discover/device-handler.c
@@ -830,7 +830,7 @@ int device_handler_dhcp(struct device_handler *handler,
int device_handler_conf(struct device_handler *handler,
struct discover_device *dev, struct pb_url *url)
{
- struct discover_context *ctx;
+ struct discover_context *ctx;
struct boot_status *status;
status = talloc_zero(handler, struct boot_status);
@@ -838,22 +838,22 @@ int device_handler_conf(struct device_handler *handler,
status->message = talloc_asprintf(status, "Processing user config");
boot_status(handler, status);
- /* create our context */
- ctx = device_handler_discover_context_create(handler, dev);
- ctx->conf_url = url;
+ /* create our context */
+ ctx = device_handler_discover_context_create(handler, dev);
+ ctx->conf_url = url;
- iterate_parsers(ctx);
+ iterate_parsers(ctx);
- device_handler_discover_context_commit(handler, ctx);
+ device_handler_discover_context_commit(handler, ctx);
status->message = talloc_asprintf(status,
"Processing user config complete");
boot_status(handler, status);
talloc_free(status);
- talloc_free(ctx);
+ talloc_free(ctx);
- return 0;
+ return 0;
}
static struct discover_boot_option *find_boot_option_by_id(
OpenPOWER on IntegriCloud