xref: /linux/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/bit.h (revision 730eeb17bbdd3c31f91e2a4fff35dd7e9c67d706)
1 /* SPDX-License-Identifier: MIT */
2 #ifndef __NVBIOS_BIT_H__
3 #define __NVBIOS_BIT_H__
4 struct bit_entry {
5 	u8  id;
6 	u8  version;
7 	u16 length;
8 	u16 offset;
9 };
10 
11 int bit_entry(struct nvkm_bios *, u8 id, struct bit_entry *);
12 #endif
13