GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / staging / xgifb / vb_ext.h
blob5cc4d12c22540894d7c92390c732572c0dcad963
1 #ifndef _VBEXT_
2 #define _VBEXT_
4 struct DWORDREGS {
5 unsigned long Eax, Ebx, Ecx, Edx, Esi, Edi, Ebp;
6 };
8 struct WORDREGS {
9 unsigned short ax, hi_ax, bx, hi_bx, cx, hi_cx, dx, hi_dx, si,
10 hi_si, di, hi_di, bp, hi_bp;
13 struct BYTEREGS {
14 unsigned char al, ah, hi_al, hi_ah, bl, bh, hi_bl, hi_bh, cl, ch,
15 hi_cl, hi_ch, dl, dh, hi_dl, hi_dh;
18 typedef union _X86_REGS {
19 struct DWORDREGS e;
20 struct WORDREGS x;
21 struct BYTEREGS h;
22 } X86_REGS, *PX86_REGS;
24 extern void XGI_XG21Fun14(struct xgi_hw_device_info *pXGIHWDE, PX86_REGS pBiosArguments);
25 extern void XGISetDPMS(struct xgi_hw_device_info *pXGIHWDE,
26 unsigned long VESA_POWER_STATE);
27 extern void XGI_GetSenseStatus(struct xgi_hw_device_info *HwDeviceExtension, struct vb_device_info *pVBInfo);
28 extern void XGINew_SetModeScratch(struct xgi_hw_device_info *HwDeviceExtension, struct vb_device_info *pVBInfo) ;
29 extern void ReadVBIOSTablData(unsigned char ChipType,
30 struct vb_device_info *pVBInfo);
31 extern unsigned short XGINew_SenseLCD(struct xgi_hw_device_info *,
32 struct vb_device_info *pVBInfo);
34 #endif