[PATCH] genirq: x86_64 irq: Kill irq compression
[linux-2.6/kvm.git] / include / video / mbxfb.h
blob3bde0f5cd55ce961fc49a7f4d71102fb8f950c9c
1 #ifndef __MBX_FB_H
2 #define __MBX_FB_H
4 struct mbxfb_val {
5 unsigned int defval;
6 unsigned int min;
7 unsigned int max;
8 };
10 struct fb_info;
12 struct mbxfb_platform_data {
13 /* Screen info */
14 struct mbxfb_val xres;
15 struct mbxfb_val yres;
16 struct mbxfb_val bpp;
18 /* Memory info */
19 unsigned long memsize; /* if 0 use ODFB? */
20 unsigned long timings1;
21 unsigned long timings2;
22 unsigned long timings3;
24 int (*probe)(struct fb_info *fb);
25 int (*remove)(struct fb_info *fb);
28 #endif /* __MBX_FB_H */