Home | History | Annotate | Line # | Download | only in bios
      1 /*	$NetBSD: image.h,v 1.3 2021/12/18 23:45:33 riastradh Exp $	*/
      2 
      3 /* SPDX-License-Identifier: MIT */
      4 #ifndef __NVBIOS_IMAGE_H__
      5 #define __NVBIOS_IMAGE_H__
      6 struct nvbios_image {
      7 	u32  base;
      8 	u32  size;
      9 	u8   type;
     10 	bool last;
     11 };
     12 
     13 bool nvbios_image(struct nvkm_bios *, int, struct nvbios_image *);
     14 #endif
     15