1 /* $NetBSD: npde.h,v 1.3 2021/12/18 23:45:33 riastradh Exp $ */ 2 3 /* SPDX-License-Identifier: MIT */ 4 #ifndef __NVBIOS_NPDE_H__ 5 #define __NVBIOS_NPDE_H__ 6 struct nvbios_npdeT { 7 u32 image_size; 8 bool last; 9 }; 10 11 u32 nvbios_npdeTe(struct nvkm_bios *, u32); 12 u32 nvbios_npdeTp(struct nvkm_bios *, u32, struct nvbios_npdeT *); 13 #endif 14