summaryrefslogtreecommitdiffstats
path: root/include/ratp_bb.h
blob: 52ecaff37484388ceea8347808afeafa0551e117 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __RATP_BB_H
#define __RATP_BB_H

struct ratp_bb_pkt {
	struct list_head list;

	unsigned int len;
	uint8_t data[];
};

int barebox_ratp(struct console_device *cdev);
int barebox_ratp_fs_call(struct ratp_bb_pkt *tx, struct ratp_bb_pkt **rx);
int barebox_ratp_fs_mount(const char *path);

#endif /* __RATP_BB_H */