brintos

brintos / linux-shallow public Read only

0
0
Text · 260 B · f10f176 Raw
12 lines · c
1/* SPDX-License-Identifier: MIT */2#ifndef __NVBIOS_NPDE_H__3#define __NVBIOS_NPDE_H__4struct nvbios_npdeT {5	u32 image_size;6	bool last;7};8 9u32 nvbios_npdeTe(struct nvkm_bios *, u32);10u32 nvbios_npdeTp(struct nvkm_bios *, u32, struct nvbios_npdeT *);11#endif12