X-Git-Url: https://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=test%2Fparser%2Fhandler.c;fp=test%2Fparser%2Fhandler.c;h=f585c318c5c0dbdcf80a6bafeae74fb5e8bec742;hp=0000000000000000000000000000000000000000;hb=5d16719922866622fc0f42c570b9934f595e3c33;hpb=aed58c439015f7f7372d9ee70c767ed9dd366dd7 diff --git a/test/parser/handler.c b/test/parser/handler.c new file mode 100644 index 0000000..f585c31 --- /dev/null +++ b/test/parser/handler.c @@ -0,0 +1,28 @@ + +#include +#include + +#include "device-handler.h" + + +void discover_server_notify_device_add(struct discover_server *server, + struct device *device) +{ + (void)server; + (void)device; +} + +void discover_server_notify_boot_option_add(struct discover_server *server, + struct boot_option *option) +{ + (void)server; + (void)option; +} + +void discover_server_notify_device_remove(struct discover_server *server, + struct device *device) +{ + (void)server; + (void)device; +} +