mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-11-01 00:28:51 +01:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
21
drivers/video/fbdev/matrox/matroxfb_misc.h
Normal file
21
drivers/video/fbdev/matrox/matroxfb_misc.h
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#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);
|
||||
}
|
||||
|
||||
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__ */
|
||||
Loading…
Add table
Add a link
Reference in a new issue