brintos

brintos / linux-shallow public Read only

0
0
Text · 387 B · bb7bf67 Raw
18 lines · c
1/* SPDX-License-Identifier: MIT */2#ifndef __NVBIOS_PCIR_H__3#define __NVBIOS_PCIR_H__4struct nvbios_pcirT {5	u16 vendor_id;6	u16 device_id;7	u8  class_code[3];8	u32 image_size;9	u16 image_rev;10	u8  image_type;11	bool last;12};13 14u32 nvbios_pcirTe(struct nvkm_bios *, u32, u8 *ver, u16 *hdr);15u32 nvbios_pcirTp(struct nvkm_bios *, u32, u8 *ver, u16 *hdr,16		  struct nvbios_pcirT *);17#endif18