diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2016-12-12 19:58:32 +0800 |
---|---|---|
committer | Samuel Mendoza-Jonas <sam@mendozajonas.com> | 2016-12-20 16:40:21 +1100 |
commit | 4563c5d672f605c493996a652b9e3e588a8596dd (patch) | |
tree | 6d835e9278d4f2d4021113bfa4b1f32366865150 /test/parser/utils.c | |
parent | bdd5c29b008a4484ed141f934d97465d673a10b7 (diff) | |
download | petitboot-4563c5d672f605c493996a652b9e3e588a8596dd.zip petitboot-4563c5d672f605c493996a652b9e3e588a8596dd.tar.gz |
discover: add handler reference to struct discover_context
Since the device handler provides the status message functions, we need
a pointer to it for device discovery (which we use a struct
discover_context for).
This change adds a 'handler' member to struct discover_context, to allow
status reporting. Since we now have a handler, there's no need for the
network pointer, so provide an accessor function instead.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Signed-off-by: Samuel Mendoza-Jonas <sam@mendozajonas.com>
Diffstat (limited to 'test/parser/utils.c')
-rw-r--r-- | test/parser/utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/parser/utils.c b/test/parser/utils.c index f0796fd..6bc7cc5 100644 --- a/test/parser/utils.c +++ b/test/parser/utils.c @@ -93,6 +93,7 @@ static struct discover_context *test_create_context(struct parser_test *test) list_init(&ctx->boot_options); ctx->device = test_create_device_simple(test); ctx->test_data = test; + ctx->handler = test->handler; device_handler_add_device(test->handler, ctx->device); return ctx; |