forked from Minki/linux
[PATCH] video SiS: remove unnecessary variables in SiS_DDC2Delay
Remove unnecesary iteration and accumulator variables from SiS_DDC2Delay. Originally spotted by Jesper Juhl <jesper.juhl@gmail.com>. Cc: Jesper Juhl <jesper.juhl@gmail.com> Cc: Thomas Winischhofer <thomas@winischhofer.net> Signed-off-by: David Rientjes <rientjes@cs.washington.edu> Cc: "Antonino A. Daplas" <adaplas@pol.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
af342e939d
commit
b860e73a54
@ -445,11 +445,8 @@ SiS_CR36BIOSWord23d(struct SiS_Private *SiS_Pr)
|
||||
void
|
||||
SiS_DDC2Delay(struct SiS_Private *SiS_Pr, unsigned int delaytime)
|
||||
{
|
||||
unsigned int i, j;
|
||||
|
||||
for(i = 0; i < delaytime; i++) {
|
||||
j += SiS_GetReg(SiS_Pr->SiS_P3c4,0x05);
|
||||
}
|
||||
while (delaytime-- > 0)
|
||||
SiS_GetReg(SiS_Pr->SiS_P3c4, 0x05);
|
||||
}
|
||||
|
||||
#if defined(SIS300) || defined(SIS315H)
|
||||
|
Loading…
Reference in New Issue
Block a user