diff options
author | Peter Huewe <peterhuewe@gmx.de> | 2012-06-14 00:21:41 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-06-13 17:13:22 -0700 |
commit | ac326fb96bdf720ceb4871a7219073c5fc257595 (patch) | |
tree | 470b6001ba37648a22f1d1139c91104fdec72604 /drivers/staging/xgifb | |
parent | 95649c425fa2805b76f183c27aeed93f159e47cc (diff) | |
download | blackbird-op-linux-ac326fb96bdf720ceb4871a7219073c5fc257595.tar.gz blackbird-op-linux-ac326fb96bdf720ceb4871a7219073c5fc257595.zip |
staging/xgifb: Add header #include guards to vb_table.h
This patch adds a simple #include guard to vb_table.h
Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/xgifb')
-rw-r--r-- | drivers/staging/xgifb/vb_table.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/staging/xgifb/vb_table.h b/drivers/staging/xgifb/vb_table.h index d22e599cb305..9a17113849ec 100644 --- a/drivers/staging/xgifb/vb_table.h +++ b/drivers/staging/xgifb/vb_table.h @@ -1,3 +1,5 @@ +#ifndef _VB_TABLE_ +#define _VB_TABLE_ /* yilin modify for xgi20 */ static struct SiS_MCLKData XGI340New_MCLKData[] = { {0x16, 0x01, 0x01, 166}, @@ -2696,3 +2698,4 @@ static struct XGI301C_Tap4TimingStruct YPbPr750pTap4Timing[] = { } } }; +#endif |