Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: MIT */
0002 #ifndef __NVBIOS_IMAGE_H__
0003 #define __NVBIOS_IMAGE_H__
0004 struct nvbios_image {
0005     u32  base;
0006     u32  size;
0007     u8   type;
0008     bool last;
0009 };
0010 
0011 bool nvbios_image(struct nvkm_bios *, int, struct nvbios_image *);
0012 #endif