1 | #ifndef __NVBIOS_TIMING_H__ |
---|---|
2 | #define __NVBIOS_TIMING_H__ |
3 | |
4 | struct nvbios_ramcfg; |
5 | |
6 | u16 nvbios_timingTe(struct nouveau_bios *, |
7 | u8 *ver, u8 *hdr, u8 *cnt, u8 *len, u8 *snr, u8 *ssz); |
8 | u16 nvbios_timingEe(struct nouveau_bios *, int idx, |
9 | u8 *ver, u8 *hdr, u8 *cnt, u8 *len); |
10 | u16 nvbios_timingEp(struct nouveau_bios *, int idx, |
11 | u8 *ver, u8 *hdr, u8 *cnt, u8 *len, |
12 | struct nvbios_ramcfg *); |
13 | |
14 | #endif |
15 |