1 | #ifndef __NOUVEAU_PLL_H__ |
---|---|
2 | #define __NOUVEAU_PLL_H__ |
3 | |
4 | int nv04_pll_calc(struct nouveau_subdev *, struct nvbios_pll *, u32 freq, |
5 | int *N1, int *M1, int *N2, int *M2, int *P); |
6 | int nva3_pll_calc(struct nouveau_subdev *, struct nvbios_pll *, u32 freq, |
7 | int *N, int *fN, int *M, int *P); |
8 | |
9 | #endif |
10 |