1 | #ifndef __NVBIOS_P0260_H__ |
2 | #define __NVBIOS_P0260_H__ |
3 | |
4 | u32 nvbios_P0260Te(struct nouveau_bios *, |
5 | u8 *ver, u8 *hdr, u8 *cnt, u8 *len, u8 *xnr, u8 *xsz); |
6 | |
7 | struct nvbios_P0260E { |
8 | u32 data; |
9 | }; |
10 | |
11 | u32 nvbios_P0260Ee(struct nouveau_bios *, int idx, u8 *ver, u8 *hdr); |
12 | u32 nvbios_P0260Ep(struct nouveau_bios *, int idx, u8 *ver, u8 *hdr, |
13 | struct nvbios_P0260E *); |
14 | |
15 | struct nvbios_P0260X { |
16 | u32 data; |
17 | }; |
18 | |
19 | u32 nvbios_P0260Xe(struct nouveau_bios *, int idx, u8 *ver, u8 *hdr); |
20 | u32 nvbios_P0260Xp(struct nouveau_bios *, int idx, u8 *ver, u8 *hdr, |
21 | struct nvbios_P0260X *); |
22 | |
23 | #endif |
24 | |