diff options
Diffstat (limited to 'drivers/video/matrox/matroxfb_misc.h')
-rw-r--r-- | drivers/video/matrox/matroxfb_misc.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/video/matrox/matroxfb_misc.h b/drivers/video/matrox/matroxfb_misc.h new file mode 100644 index 000000000000..cb62cc0ead96 --- /dev/null +++ b/drivers/video/matrox/matroxfb_misc.h | |||
@@ -0,0 +1,18 @@ | |||
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__ */ | ||