Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: MIT */
0002 #ifndef __NVBIOS_NPDE_H__
0003 #define __NVBIOS_NPDE_H__
0004 struct nvbios_npdeT {
0005     u32 image_size;
0006     bool last;
0007 };
0008 
0009 u32 nvbios_npdeTe(struct nvkm_bios *, u32);
0010 u32 nvbios_npdeTp(struct nvkm_bios *, u32, struct nvbios_npdeT *);
0011 #endif