image.h 202 B

1234567891011
  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. bool nvbios_image(struct nvkm_bios *, int, struct nvbios_image *);
  10. #endif