You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
509 B
29 lines
509 B
19 years ago
|
#ifndef __MBX_FB_H
|
||
|
#define __MBX_FB_H
|
||
|
|
||
|
struct mbxfb_val {
|
||
|
unsigned int defval;
|
||
|
unsigned int min;
|
||
|
unsigned int max;
|
||
|
};
|
||
|
|
||
|
struct fb_info;
|
||
|
|
||
|
struct mbxfb_platform_data {
|
||
|
/* Screen info */
|
||
|
struct mbxfb_val xres;
|
||
|
struct mbxfb_val yres;
|
||
|
struct mbxfb_val bpp;
|
||
|
|
||
|
/* Memory info */
|
||
|
unsigned long memsize; /* if 0 use ODFB? */
|
||
|
unsigned long timings1;
|
||
|
unsigned long timings2;
|
||
|
unsigned long timings3;
|
||
|
|
||
|
int (*probe)(struct fb_info *fb);
|
||
|
int (*remove)(struct fb_info *fb);
|
||
|
};
|
||
|
|
||
|
#endif /* __MBX_FB_H */
|