xfree86: move didLock assignment down to where the function pointer is valid.
crtc->funcs->lock is NULL, so it's no use calling it here. Move it down so
it's actually defined before we use it.
Introduced with 6f59a81600.
Tested-by: Peter Hutterer <peter.hutterer@who-t.net>
			
			
This commit is contained in:
		
							parent
							
								
									a85d210b34
								
							
						
					
					
						commit
						0de58c88ab
					
				|  | @ -278,7 +278,6 @@ xf86CrtcSetModeTransform (xf86CrtcPtr crtc, DisplayModePtr mode, Rotation rotati | |||
| 
 | ||||
|     adjusted_mode = xf86DuplicateMode(mode); | ||||
| 
 | ||||
|     didLock = crtc->funcs->lock (crtc); | ||||
| 
 | ||||
|     saved_mode = crtc->mode; | ||||
|     saved_x = crtc->x; | ||||
|  | @ -308,6 +307,7 @@ xf86CrtcSetModeTransform (xf86CrtcPtr crtc, DisplayModePtr mode, Rotation rotati | |||
| 	goto done; | ||||
|     } | ||||
| 
 | ||||
|     didLock = crtc->funcs->lock (crtc); | ||||
|     /* Pass our mode to the outputs and the CRTC to give them a chance to
 | ||||
|      * adjust it according to limitations or output properties, and also | ||||
|      * a chance to reject the mode entirely. | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue