Module Name:    xsrc
Committed By:   christos
Date:           Thu Jan 31 20:40:59 UTC 2019

Modified Files:
        xsrc/external/mit/xf86-video-ati/dist/src: radeon_vip.c

Log Message:
explicitly continue.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.3 -r1.2 \
    xsrc/external/mit/xf86-video-ati/dist/src/radeon_vip.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: xsrc/external/mit/xf86-video-ati/dist/src/radeon_vip.c
diff -u xsrc/external/mit/xf86-video-ati/dist/src/radeon_vip.c:1.1.1.3 xsrc/external/mit/xf86-video-ati/dist/src/radeon_vip.c:1.2
--- xsrc/external/mit/xf86-video-ati/dist/src/radeon_vip.c:1.1.1.3	Sun Sep 23 15:49:09 2012
+++ xsrc/external/mit/xf86-video-ati/dist/src/radeon_vip.c	Thu Jan 31 15:40:59 2019
@@ -302,7 +302,8 @@ static Bool RADEONVIP_fifo_write(GENERIC
 	{
 		OUTREG(VIPH_REG_DATA, *(uint32_t*)(buffer + i));
     	write_mem_barrier();
-		while(VIP_BUSY == (status = RADEONVIP_fifo_idle(b, 0x0f)));
+		while(VIP_BUSY == (status = RADEONVIP_fifo_idle(b, 0x0f)))
+			continue;
     	if(VIP_IDLE != status)
 		{
     		xf86DrvMsg(pScrn->scrnIndex, X_INFO, "cannot write to VIPH_REG_DATA\n");

Reply via email to