staging/xgifb: Include sis headers
authorPeter Huewe <peterhuewe@gmx.de>
Sun, 15 Jan 2012 18:22:11 +0000 (19:22 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 9 Feb 2012 17:21:56 +0000 (09:21 -0800)
This patch includes the headers of the sis driver and reorders some
includes.

Since the xgi driver used to redefine a lot of stuff from the sis
driver, we can simply include the headers of the sis driver itself, so
we can remove duplicated stuff later on.

Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/xgifb/XGI_main.h
drivers/staging/xgifb/XGIfb.h
drivers/staging/xgifb/vb_init.c
drivers/staging/xgifb/vb_struct.h
drivers/staging/xgifb/vgatypes.h

index 35f7b2a485e1aecd75853b1ed2e4128ddb9ae329..fdee421cd49740f5a36a238054906b78a03b767f 100644 (file)
@@ -7,6 +7,7 @@
 
 #include "XGIfb.h"
 #include "vb_struct.h"
+#include "../../video/sis/sis.h"
 #include "vb_def.h"
 
 #define XGIFAIL(x) do { printk(x "\n"); return -EINVAL; } while (0)
index 2c866bb65a007e062ffa2c3a292377936e1dcbff..37bb730de04758f0876b06073042b45d30184d91 100644 (file)
@@ -3,8 +3,8 @@
 #include <linux/ioctl.h>
 #include <linux/types.h>
 
-#include "vb_struct.h"
 #include "vgatypes.h"
+#include "vb_struct.h"
 
 enum xgifb_display_type {
        XGIFB_DISP_NONE = 0,
index 4ccd988ffd7c130458b66c72d59e08dbafbbab6d..a53a097131b4ff5ee0cdf03bde149f8551a31c12 100644 (file)
@@ -3,8 +3,8 @@
 #include <linux/pci.h>
 #include <linux/vmalloc.h>
 
-#include "vgatypes.h"
 #include "XGIfb.h"
+#include "vgatypes.h"
 
 #include "vb_def.h"
 #include "vb_struct.h"
index 6556a0d6ff82eab65968330229c69d68fcab8270..d70df04e7dc9b307d56fe37a2707bc8a46d8d646 100644 (file)
@@ -10,6 +10,7 @@ struct XGI_LCDDataStruct {
        unsigned short LCDVT;
 };
 
+#include "../../video/sis/vstruct.h"
 
 struct XGI_LVDSCRT1HDataStruct {
        unsigned char Reg[8];
index 9e166bbb00c420d08dd4eac1d95b3c619ca1c225..a7208e3158153b7a86361b17f0dc1a06fe45b264 100644 (file)
@@ -2,6 +2,9 @@
 #define _VGATYPES_
 
 #include <linux/ioctl.h>
+#include <linux/fb.h>  /* for struct fb_var_screeninfo for sis.h */
+#include "../../video/sis/vgatypes.h"
+#include "../../video/sis/sis.h"               /* for LCD_TYPE */
 
 #ifndef XGI_VB_CHIP_TYPE
 enum XGI_VB_CHIP_TYPE {
@@ -19,6 +22,12 @@ enum XGI_VB_CHIP_TYPE {
 };
 #endif
 
+
+#define XGI_LCD_TYPE
+/* Since the merge with video/sis the LCD_TYPEs are used from
+ drivers/video/sis/sis.h . Nevertheless we keep this (for the moment) for
+ future reference until the code is merged completely and we are sure
+ nothing of this should be added to the sis.h header */
 #ifndef XGI_LCD_TYPE
 enum XGI_LCD_TYPE {
        LCD_INVALID = 0,