1#ifndef __NVBIOS_BIT_H__
2#define __NVBIOS_BIT_H__
3struct bit_entry {
4	u8  id;
5	u8  version;
6	u16 length;
7	u16 offset;
8};
9
10int bit_entry(struct nvkm_bios *, u8 id, struct bit_entry *);
11#endif
12