diff options
author | Aaro Koskinen <aaro.koskinen@iki.fi> | 2010-12-20 16:50:22 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-12-21 22:57:27 -0500 |
commit | 17d6ce11195fceda62af00beefde37e37a01337c (patch) | |
tree | 15dd1a717b1cc2f7d23775bd5250bef317872946 /drivers/video | |
parent | 114776776a8e38fff5772efeef68fc3fdde76a82 (diff) |
sisfb: eliminate compiler warnings
Convert some bit masks to 8-bit values to avoid the following compiler
warnings:
drivers/video/sis/sis_main.c:3858: warning: large integer implicitly truncated to unsigned type
drivers/video/sis/init301.c:5855: warning: large integer implicitly truncated to unsigned type
drivers/video/sis/init301.c:5869: warning: large integer implicitly truncated to unsigned type
Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Cc: Thomas Winischhofer <thomas@winischhofer.net>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/sis/init301.c | 4 | ||||
-rw-r--r-- | drivers/video/sis/sis_main.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/sis/init301.c b/drivers/video/sis/init301.c index e24c5ca52dae..a89e3cafd5ad 100644 --- a/drivers/video/sis/init301.c +++ b/drivers/video/sis/init301.c | |||
@@ -5852,7 +5852,7 @@ SiS_SetGroup1_LVDS(struct SiS_Private *SiS_Pr, unsigned short ModeNo, unsigned s | |||
5852 | temp = tempax & 0x00FF; | 5852 | temp = tempax & 0x00FF; |
5853 | SiS_SetReg(SiS_Pr->SiS_Part1Port,0x43,temp); | 5853 | SiS_SetReg(SiS_Pr->SiS_Part1Port,0x43,temp); |
5854 | temp = ((tempax & 0xFF00) >> 8) << 3; | 5854 | temp = ((tempax & 0xFF00) >> 8) << 3; |
5855 | SiS_SetRegANDOR(SiS_Pr->SiS_Part1Port,0x44,~0x0F8,temp); | 5855 | SiS_SetRegANDOR(SiS_Pr->SiS_Part1Port, 0x44, 0x07, temp); |
5856 | 5856 | ||
5857 | tempax = SiS_Pr->SiS_VDE; /* BDxWadrst1 = BDxWadrst0 + BDxWadroff * VDE */ | 5857 | tempax = SiS_Pr->SiS_VDE; /* BDxWadrst1 = BDxWadrst0 + BDxWadroff * VDE */ |
5858 | if(SiS_Pr->SiS_LCDResInfo == Panel_320x240_1 || | 5858 | if(SiS_Pr->SiS_LCDResInfo == Panel_320x240_1 || |
@@ -5866,7 +5866,7 @@ SiS_SetGroup1_LVDS(struct SiS_Private *SiS_Pr, unsigned short ModeNo, unsigned s | |||
5866 | temp = ((tempeax & 0xFF0000) >> 16) | 0x10; | 5866 | temp = ((tempeax & 0xFF0000) >> 16) | 0x10; |
5867 | SiS_SetReg(SiS_Pr->SiS_Part1Port,0x40,temp); | 5867 | SiS_SetReg(SiS_Pr->SiS_Part1Port,0x40,temp); |
5868 | temp = ((tempeax & 0x01000000) >> 24) << 7; | 5868 | temp = ((tempeax & 0x01000000) >> 24) << 7; |
5869 | SiS_SetRegANDOR(SiS_Pr->SiS_Part1Port,0x3C,~0x080,temp); | 5869 | SiS_SetRegANDOR(SiS_Pr->SiS_Part1Port, 0x3C, 0x7F, temp); |
5870 | 5870 | ||
5871 | SiS_SetReg(SiS_Pr->SiS_Part1Port,0x2F,0x03); | 5871 | SiS_SetReg(SiS_Pr->SiS_Part1Port,0x2F,0x03); |
5872 | SiS_SetReg(SiS_Pr->SiS_Part1Port,0x03,0x50); | 5872 | SiS_SetReg(SiS_Pr->SiS_Part1Port,0x03,0x50); |
diff --git a/drivers/video/sis/sis_main.c b/drivers/video/sis/sis_main.c index 793216b5d1a7..2fb8c5a660fb 100644 --- a/drivers/video/sis/sis_main.c +++ b/drivers/video/sis/sis_main.c | |||
@@ -3855,7 +3855,7 @@ sisfb_post_setmode(struct sis_video_info *ivideo) | |||
3855 | reg1 = 0x00; | 3855 | reg1 = 0x00; |
3856 | } | 3856 | } |
3857 | SiS_SetRegANDOR(SISCR, ivideo->SiS_Pr.SiS_MyCR63, ~0x40, reg); | 3857 | SiS_SetRegANDOR(SISCR, ivideo->SiS_Pr.SiS_MyCR63, ~0x40, reg); |
3858 | SiS_SetRegANDOR(SISSR, 0x1f, ~0xc0, reg1); | 3858 | SiS_SetRegANDOR(SISSR, 0x1f, 0x3f, reg1); |
3859 | } | 3859 | } |
3860 | #endif | 3860 | #endif |
3861 | 3861 | ||