summaryrefslogtreecommitdiffstats
path: root/discover/parser-utils.h
blob: fe28b7bd74d7adfd100f011649fdbf27f17aca24 (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
#ifndef PARSER_UTILS_H
#define PARSER_UTILS_H

#include "pb-protocol/pb-protocol.h"
#include "parser.h"

#define streq(a,b) (!strcasecmp((a),(b)))

#define artwork_pathname(file) (PKG_SHARE_DIR "/artwork/" file)

#define define_parser(__name, __parse_fn)			\
	struct parser 							\
	__ ## __name ## _parser = {					\
		.name		= #__name,				\
		.parse		= __parse_fn,				\
	};

void device_add_boot_option(struct device *device,
		struct boot_option *boot_option);

const char *generic_icon_file(enum generic_icon_type type);

enum generic_icon_type guess_device_type(struct discover_context *ctx);

#endif /* PARSER_UTILS_H */
OpenPOWER on IntegriCloud