2019-06-19 20:13:43 -04:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
2012-07-10 10:49:22 +10:00
|
|
|
#ifndef __NVBIOS_BIT_H__
|
|
|
|
|
#define __NVBIOS_BIT_H__
|
|
|
|
|
struct bit_entry {
|
|
|
|
|
u8 id;
|
|
|
|
|
u8 version;
|
|
|
|
|
u16 length;
|
|
|
|
|
u16 offset;
|
|
|
|
|
};
|
|
|
|
|
|
2015-01-14 14:40:03 +10:00
|
|
|
int bit_entry(struct nvkm_bios *, u8 id, struct bit_entry *);
|
2012-07-10 10:49:22 +10:00
|
|
|
#endif
|