xref: /linux/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/image.h (revision c9636244f86ae80b66e8ffb05ff755d85edf1988)
1 #ifndef __NVBIOS_IMAGE_H__
2 #define __NVBIOS_IMAGE_H__
3 struct nvbios_image {
4 	u32  base;
5 	u32  size;
6 	u8   type;
7 	bool last;
8 };
9 
10 bool nvbios_image(struct nvkm_bios *, int, struct nvbios_image *);
11 #endif
12