]> git.ozlabs.org Git - petitboot/blob - test/parser/handler.c
test/parser: Add check_resolved_url_resource
[petitboot] / test / parser / handler.c
1
2 #include <talloc/talloc.h>
3 #include <types/types.h>
4
5 #include "device-handler.h"
6
7
8 void discover_server_notify_device_add(struct discover_server *server,
9                 struct device *device)
10 {
11         (void)server;
12         (void)device;
13 }
14
15 void discover_server_notify_boot_option_add(struct discover_server *server,
16                 struct boot_option *option)
17 {
18         (void)server;
19         (void)option;
20 }
21
22 void discover_server_notify_device_remove(struct discover_server *server,
23                 struct device *device)
24 {
25         (void)server;
26         (void)device;
27 }
28