1#ifndef __FIS_H
2#define __FIS_H
3
4struct fis_part {
5	unsigned char name[16];
6	uint32_t offset;
7	uint32_t loadaddr;
8	uint32_t size;
9};
10
11int fis_validate(struct fis_part *old, int n_old, struct fis_part *new, int n_new);
12int fis_remap(struct fis_part *old, int n_old, struct fis_part *new, int n_new);
13
14#endif
15