1#ifndef __NVBIOS_IMAGE_H__
2#define __NVBIOS_IMAGE_H__
3struct nvbios_image {
4	u32  base;
5	u32  size;
6	u8   type;
7	bool last;
8};
9
10bool nvbios_image(struct nvkm_bios *, int, struct nvbios_image *);
11#endif
12