summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Klausner <wiz@NetBSD.org>2015-08-06 14:05:10 +0200
committerThomas Klausner <wiz@NetBSD.org>2015-08-10 23:41:51 +0200
commitd97ab5991b101226e8f11adceddc5cc64f7bb541 (patch)
tree782e79273dd9ab6a825fe72d2c06785a5e0a3b73
parent7edfe7de41a92be43893e34cdf6f81839d5888a1 (diff)
Remove const marker for some variables.
They are used in non-const context. Fixes a couple of warnings: warning: assignment discards 'const' qualifier from pointer target type Signed-off-by: Thomas Klausner <wiz@NetBSD.org> Reviewed-by: Connor Behan <connor.behan@gmail.com>
-rwxr-xr-xsrc/vb_table.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/vb_table.h b/src/vb_table.h
index b26427c..d49f233 100755
--- a/src/vb_table.h
+++ b/src/vb_table.h
@@ -3112,14 +3112,14 @@ static const XGI_ModeResInfoStruct XGI330_ModeResInfo[]=
{ 1152, 864, 8,16}
};
-static const UCHAR XGI330_OutputSelect = 0x40;
-static const UCHAR XGI330_SoftSetting = 0x30;
-static const UCHAR XGI330_SR07 = 0x18;
-static const UCHAR XG21_DVOSetting = 0x00 ;
-static const UCHAR XG21_CR2E = 0x00 ;
-static const UCHAR XG21_CR2F = 0x00 ;
-static const UCHAR XG21_CR46 = 0x00 ;
-static const UCHAR XG21_CR47 = 0x00 ;
+static UCHAR XGI330_OutputSelect = 0x40;
+static UCHAR XGI330_SoftSetting = 0x30;
+static UCHAR XGI330_SR07 = 0x18;
+static UCHAR XG21_DVOSetting = 0x00 ;
+static UCHAR XG21_CR2E = 0x00 ;
+static UCHAR XG21_CR2F = 0x00 ;
+static UCHAR XG21_CR46 = 0x00 ;
+static UCHAR XG21_CR47 = 0x00 ;
UCHAR XG27_CR97 = 0xC1 ;
UCHAR XG27_SR36 = 0x30 ;