summaryrefslogtreecommitdiffstats
path: root/test/parser/handler.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/parser/handler.c')
-rw-r--r--test/parser/handler.c28
1 files changed, 28 insertions, 0 deletions
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 <talloc/talloc.h>
+#include <types/types.h>
+
+#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;
+}
+
OpenPOWER on IntegriCloud