Linux kernel & device driver programming

Cross-Referenced Linux and Device Driver Code

[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ]
Version: [ 2.6.11.8 ] [ 2.6.25 ] [ 2.6.25.8 ] [ 2.6.31.13 ] Architecture: [ i386 ]
  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__ */
 19 
  This page was automatically generated by the LXR engine.