Commit 94f768fd authored by Alex Deucher's avatar Alex Deucher
Browse files

drm/radeon/r1xx-r4xx: don't use radeon_crtc for vblank callback



This might be called before we've allocated the radeon_crtcs

Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 46437057
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -80,10 +80,12 @@ MODULE_FIRMWARE(FIRMWARE_R520);
 */
void r100_wait_for_vblank(struct radeon_device *rdev, int crtc)
{
	struct radeon_crtc *radeon_crtc = rdev->mode_info.crtcs[crtc];
	int i;

	if (radeon_crtc->crtc_id == 0) {
	if (crtc >= rdev->num_crtc)
		return;

	if (crtc == 0) {
		if (RREG32(RADEON_CRTC_GEN_CNTL) & RADEON_CRTC_EN) {
			for (i = 0; i < rdev->usec_timeout; i++) {
				if (!(RREG32(RADEON_CRTC_STATUS) & RADEON_CRTC_VBLANK_CUR))