diff options
author | Justin Forbes <jmforbes@xps.linuxtx.org> | 2019-12-30 10:46:19 -0600 |
---|---|---|
committer | Justin Forbes <jmforbes@xps.linuxtx.org> | 2019-12-30 10:46:19 -0600 |
commit | 007e505ae0ba5e967c5aebf29885a44263042654 (patch) | |
tree | 1baae27bfc3068ef5deef05855c6980538479b6b /drm-i915-hush-check-crtc-state.patch | |
parent | df5a06e2f275dc0e06fca38c398bc253f9f836a7 (diff) | |
download | kernel-007e505ae0ba5e967c5aebf29885a44263042654.tar.gz kernel-007e505ae0ba5e967c5aebf29885a44263042654.tar.xz kernel-007e505ae0ba5e967c5aebf29885a44263042654.zip |
Linux v5.4.6 rebase
Diffstat (limited to 'drm-i915-hush-check-crtc-state.patch')
-rw-r--r-- | drm-i915-hush-check-crtc-state.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/drm-i915-hush-check-crtc-state.patch b/drm-i915-hush-check-crtc-state.patch deleted file mode 100644 index 6e2481838..000000000 --- a/drm-i915-hush-check-crtc-state.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 8f8f3ee1e3ae35df618761475293dc5d8285b6e0 Mon Sep 17 00:00:00 2001 -From: Adam Jackson <ajax@redhat.com> -Date: Mon, 10 Jul 2017 08:11:48 -0700 -Subject: [PATCH] drm/i915: hush check crtc state - -This is _by far_ the most common backtrace for i915 on retrace.fp.o, and -it's mostly useless noise. There's not enough context when it's generated -to know if something actually went wrong. Downgrade the message to -KMS debugging so we can still get it if we want it. - -Bugzilla: 1027037 1028785 -Upstream-status: http://lists.freedesktop.org/archives/intel-gfx/2013-November/035948.html ---- - drivers/gpu/drm/i915/display/intel_display.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c -index 8592a7d422de..e915cf6b0ba6 100644 ---- a/drivers/gpu/drm/i915/display/intel_display.c -+++ b/drivers/gpu/drm/i915/display/intel_display.c -@@ -12982,7 +12982,7 @@ verify_crtc_state(struct drm_crtc *crtc, - - sw_config = to_intel_crtc_state(new_crtc_state); - if (!intel_pipe_config_compare(sw_config, pipe_config, false)) { -- I915_STATE_WARN(1, "pipe state doesn't match!\n"); -+ DRM_DEBUG_KMS(1, "pipe state doesn't match!\n"); - intel_dump_pipe_config(pipe_config, NULL, "[hw state]"); - intel_dump_pipe_config(sw_config, NULL, "[sw state]"); - } --- -2.21.0 - |