diff options
author | Aaro Koskinen <aaro.koskinen@iki.fi> | 2011-10-11 21:47:34 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-10-12 09:51:49 -0600 |
commit | 4397c7f03b52b3a26fd5e1ed934f0d1a66160b33 (patch) | |
tree | 2a1ff01b27d78c426172743ae3a9d2926d36008e | |
parent | 2f0f395ef788319b03bc0be785c5bee8d8bececa (diff) |
staging: xgifb: make RAM type tables const
RAM type tables are read-only and can be made const.
Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/staging/xgifb/vb_init.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/staging/xgifb/vb_init.c b/drivers/staging/xgifb/vb_init.c index ce472dc417a5..9e890a17fbc2 100644 --- a/drivers/staging/xgifb/vb_init.c +++ b/drivers/staging/xgifb/vb_init.c @@ -15,13 +15,13 @@ #include <linux/io.h> -static unsigned short XGINew_DDRDRAM_TYPE340[4][5] = { +static const unsigned short XGINew_DDRDRAM_TYPE340[4][5] = { { 2, 13, 9, 64, 0x45}, { 2, 12, 9, 32, 0x35}, { 2, 12, 8, 16, 0x31}, { 2, 11, 8, 8, 0x21} }; -static unsigned short XGINew_DDRDRAM_TYPE20[12][5] = { +static const unsigned short XGINew_DDRDRAM_TYPE20[12][5] = { { 2, 14, 11, 128, 0x5D}, { 2, 14, 10, 64, 0x59}, { 2, 13, 11, 64, 0x4D}, @@ -589,7 +589,7 @@ static void XGINew_SetDRAMDefaultRegister340( } static void XGINew_SetDRAMSizingType(int index, - unsigned short DRAMTYPE_TABLE[][5], + const unsigned short DRAMTYPE_TABLE[][5], struct vb_device_info *pVBInfo) { unsigned short data; @@ -601,7 +601,7 @@ static void XGINew_SetDRAMSizingType(int index, } static unsigned short XGINew_SetDRAMSizeReg(int index, - unsigned short DRAMTYPE_TABLE[][5], + const unsigned short DRAMTYPE_TABLE[][5], struct vb_device_info *pVBInfo) { unsigned short data = 0, memsize = 0; @@ -645,7 +645,7 @@ static unsigned short XGINew_SetDRAMSizeReg(int index, } static unsigned short XGINew_SetDRAMSize20Reg(int index, - unsigned short DRAMTYPE_TABLE[][5], + const unsigned short DRAMTYPE_TABLE[][5], struct vb_device_info *pVBInfo) { unsigned short data = 0, memsize = 0; |