summaryrefslogtreecommitdiffstats
path: root/arch/sandbox/mach-sandbox/include/mach/hostfile.h
blob: e2f44c4f7b0c3ae2fa6c6c9fcbbc25f6ed60b10f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __ASM_ARCH_HOSTFILE_H
#define __ASM_ARCH_HOSTFILE_H

struct hf_info {
	int fd;
	unsigned long long base;
	unsigned long long size;
	const char *devname;
	const char *filename;
};

int barebox_register_filedev(struct hf_info *hf);

#endif /* __ASM_ARCH_HOSTFILE_H */