Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6cb504c2 authored by Frans Pop's avatar Frans Pop Committed by Dave Airlie
Browse files

drm/i915: silence vblank warnings



these errors are pretty pointless

Reviewed-by: default avatarJesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 8d3457ec
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -190,7 +190,7 @@ u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
	low_frame = pipe ? PIPEBFRAMEPIXEL : PIPEAFRAMEPIXEL;
	low_frame = pipe ? PIPEBFRAMEPIXEL : PIPEAFRAMEPIXEL;


	if (!i915_pipe_enabled(dev, pipe)) {
	if (!i915_pipe_enabled(dev, pipe)) {
		DRM_ERROR("trying to get vblank count for disabled pipe %d\n", pipe);
		DRM_DEBUG("trying to get vblank count for disabled pipe %d\n", pipe);
		return 0;
		return 0;
	}
	}


@@ -219,7 +219,7 @@ u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
	int reg = pipe ? PIPEB_FRMCOUNT_GM45 : PIPEA_FRMCOUNT_GM45;
	int reg = pipe ? PIPEB_FRMCOUNT_GM45 : PIPEA_FRMCOUNT_GM45;


	if (!i915_pipe_enabled(dev, pipe)) {
	if (!i915_pipe_enabled(dev, pipe)) {
		DRM_ERROR("trying to get vblank count for disabled pipe %d\n", pipe);
		DRM_DEBUG("trying to get vblank count for disabled pipe %d\n", pipe);
		return 0;
		return 0;
	}
	}