Release 4.11 drivers/video/fbdev/matrox/matroxfb_misc.h
#ifndef __MATROXFB_MISC_H__
#define __MATROXFB_MISC_H__
#include "matroxfb_base.h"
/* also for modules */
int matroxfb_PLL_calcclock(const struct matrox_pll_features* pll, unsigned int freq, unsigned int fmax,
unsigned int* in, unsigned int* feed, unsigned int* post);
static inline int PLL_calcclock(const struct matrox_fb_info *minfo,
unsigned int freq, unsigned int fmax,
unsigned int *in, unsigned int *feed,
unsigned int *post)
{
return matroxfb_PLL_calcclock(&minfo->features.pll, freq, fmax, in, feed, post);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 49 | 85.96% | 1 | 33.33% |
Jean Delvare | 8 | 14.04% | 2 | 66.67% |
Total | 57 | 100.00% | 3 | 100.00% |
int matroxfb_vgaHWinit(struct matrox_fb_info *minfo, struct my_timming* m);
void matroxfb_vgaHWrestore(struct matrox_fb_info *minfo);
void matroxfb_read_pins(struct matrox_fb_info *minfo);
#endif /* __MATROXFB_MISC_H__ */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 110 | 81.48% | 1 | 25.00% |
Jean Delvare | 21 | 15.56% | 2 | 50.00% |
Petr Vandrovec | 4 | 2.96% | 1 | 25.00% |
Total | 135 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.