Newer
Older
barebox / include / ratp_bb.h
@Aleksander Morgado Aleksander Morgado on 30 Jan 2018 335 bytes ratp: remove unused list pointer from ratp_bb_pkt
#ifndef __RATP_BB_H
#define __RATP_BB_H

struct ratp_bb_pkt {
	unsigned int len;
	uint8_t data[];
};

int  barebox_ratp(struct console_device *cdev);
void barebox_ratp_command_run(void);
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 */