mirror of
https://github.com/revyos/thead-kernel.git
synced 2026-07-21 07:38:05 +02:00
12 lines
260 B
C
12 lines
260 B
C
/* SPDX-License-Identifier: MIT */
|
|
#ifndef __NVBIOS_NPDE_H__
|
|
#define __NVBIOS_NPDE_H__
|
|
struct nvbios_npdeT {
|
|
u32 image_size;
|
|
bool last;
|
|
};
|
|
|
|
u32 nvbios_npdeTe(struct nvkm_bios *, u32);
|
|
u32 nvbios_npdeTp(struct nvkm_bios *, u32, struct nvbios_npdeT *);
|
|
#endif
|