Skip to content

Commit

Permalink
[PATCH] video/sis/init301.c:SiS_ChrontelDoSomething2(): remove dead code
Browse files Browse the repository at this point in the history
The Coverity checker spotted these two unused variables.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Cc: Thomas Winischhofer <thomas@winischhofer.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Adrian Bunk authored and Linus Torvalds committed Mar 27, 2006
1 parent d1ae418 commit e4ccde3
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions drivers/video/sis/init301.c
Original file line number Diff line number Diff line change
Expand Up @@ -8564,11 +8564,9 @@ SiS_ChrontelDoSomething3(struct SiS_Private *SiS_Pr, unsigned short ModeNo)
static void
SiS_ChrontelDoSomething2(struct SiS_Private *SiS_Pr)
{
unsigned short temp,tempcl,tempch;
unsigned short temp;

SiS_LongDelay(SiS_Pr, 1);
tempcl = 3;
tempch = 0;

do {
temp = SiS_GetCH701x(SiS_Pr,0x66);
Expand All @@ -8582,13 +8580,6 @@ SiS_ChrontelDoSomething2(struct SiS_Private *SiS_Pr)

SiS_SetCH701xForLCD(SiS_Pr);

if(tempcl == 0) {
if(tempch == 3) break;
SiS_ChrontelResetDB(SiS_Pr);
tempcl = 3;
tempch++;
}
tempcl--;
temp = SiS_GetCH701x(SiS_Pr,0x76);
temp &= 0xfb; /* Reset PLL */
SiS_SetCH701x(SiS_Pr,0x76,temp);
Expand Down

0 comments on commit e4ccde3

Please sign in to comment.