summaryrefslogtreecommitdiffstats
path: root/test/parser/handler.c
blob: f585c318c5c0dbdcf80a6bafeae74fb5e8bec742 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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