Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __MATROXFB_MISC_H__ |
| 2 | #define __MATROXFB_MISC_H__ |
| 3 | |
| 4 | #include "matroxfb_base.h" |
| 5 | |
| 6 | /* also for modules */ |
| 7 | int matroxfb_PLL_calcclock(const struct matrox_pll_features* pll, unsigned int freq, unsigned int fmax, |
| 8 | unsigned int* in, unsigned int* feed, unsigned int* post); |
| 9 | static inline int PLL_calcclock(CPMINFO unsigned int freq, unsigned int fmax, |
| 10 | unsigned int* in, unsigned int* feed, unsigned int* post) { |
| 11 | return matroxfb_PLL_calcclock(&ACCESS_FBINFO(features.pll), freq, fmax, in, feed, post); |
| 12 | } |
| 13 | |
| 14 | int matroxfb_vgaHWinit(WPMINFO struct my_timming* m); |
| 15 | void matroxfb_vgaHWrestore(WPMINFO2); |
| 16 | void matroxfb_read_pins(WPMINFO2); |
| 17 | |
| 18 | #endif /* __MATROXFB_MISC_H__ */ |