summaryrefslogtreecommitdiffstats
path: root/drivers/staging/xgifb
diff options
context:
space:
mode:
authorAaro Koskinen2011-09-13 21:49:32 +0200
committerGreg Kroah-Hartman2011-09-16 20:16:48 +0200
commit4b4954621ff57e168ebd77b7d2682308d13b4e7f (patch)
treeb1e524247a7bff5154d32773578b1bd00cb0636b /drivers/staging/xgifb
parentstaging: xgifb: main: use readb()/readw() to access iomapped memory (diff)
downloadkernel-qcow2-linux-4b4954621ff57e168ebd77b7d2682308d13b4e7f.tar.gz
kernel-qcow2-linux-4b4954621ff57e168ebd77b7d2682308d13b4e7f.tar.xz
kernel-qcow2-linux-4b4954621ff57e168ebd77b7d2682308d13b4e7f.zip
staging: xgifb: unify #include order
Include Linux headers before driver's own headers. Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/xgifb')
-rw-r--r--drivers/staging/xgifb/vb_init.c3
-rw-r--r--drivers/staging/xgifb/vb_util.c5
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/xgifb/vb_init.c b/drivers/staging/xgifb/vb_init.c
index 262992ee70e5..c7fd406be1a4 100644
--- a/drivers/staging/xgifb/vb_init.c
+++ b/drivers/staging/xgifb/vb_init.c
@@ -1,7 +1,6 @@
-#include "vgatypes.h"
-
#include <linux/types.h>
#include <linux/delay.h> /* udelay */
+#include "vgatypes.h"
#include "XGIfb.h"
#include "vb_def.h"
diff --git a/drivers/staging/xgifb/vb_util.c b/drivers/staging/xgifb/vb_util.c
index ea2b795bfa50..b5c99891ead4 100644
--- a/drivers/staging/xgifb/vb_util.c
+++ b/drivers/staging/xgifb/vb_util.c
@@ -1,10 +1,11 @@
+#include <linux/io.h>
+#include <linux/types.h>
+
#include "vb_def.h"
#include "vgatypes.h"
#include "vb_struct.h"
#include "XGIfb.h"
-#include <linux/io.h>
-#include <linux/types.h>
#include "vb_util.h"