Skip to content

Commit

Permalink
staging: xgifb: unify #include order
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Aaro Koskinen authored and Greg Kroah-Hartman committed Sep 16, 2011
1 parent 863c02a commit 4b49546
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions drivers/staging/xgifb/vb_init.c
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
5 changes: 3 additions & 2 deletions drivers/staging/xgifb/vb_util.c
Original file line number Diff line number Diff line change
@@ -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"

Expand Down

0 comments on commit 4b49546

Please sign in to comment.