linux/drivers/gpu/drm/nouveau/core/include/subdev/bios/bit.h
<<
>>
Prefs
   1#ifndef __NVBIOS_BIT_H__
   2#define __NVBIOS_BIT_H__
   3
   4struct bit_entry {
   5        u8  id;
   6        u8  version;
   7        u16 length;
   8        u16 offset;
   9};
  10
  11int bit_entry(struct nouveau_bios *, u8 id, struct bit_entry *);
  12
  13#endif
  14