brintos

brintos / linux-shallow public Read only

0
0
Text · 226 B · ebfe45f Raw
13 lines · c
1/* SPDX-License-Identifier: MIT */2#ifndef __NVBIOS_BIT_H__3#define __NVBIOS_BIT_H__4struct bit_entry {5	u8  id;6	u8  version;7	u16 length;8	u16 offset;9};10 11int bit_entry(struct nvkm_bios *, u8 id, struct bit_entry *);12#endif13