Home | History | Annotate | Line # | Download | only in bios
      1 /*	$NetBSD: bit.h,v 1.3 2021/12/18 23:45:33 riastradh Exp $	*/
      2 
      3 /* SPDX-License-Identifier: MIT */
      4 #ifndef __NVBIOS_BIT_H__
      5 #define __NVBIOS_BIT_H__
      6 struct bit_entry {
      7 	u8  id;
      8 	u8  version;
      9 	u16 length;
     10 	u16 offset;
     11 };
     12 
     13 int bit_entry(struct nvkm_bios *, u8 id, struct bit_entry *);
     14 #endif
     15