From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 643ECC52D1D for ; Tue, 30 Jul 2024 10:31:59 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id D836910E09A; Tue, 30 Jul 2024 10:31:58 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="mTnB51Qg"; dkim-atps=neutral Received: from sin.source.kernel.org (sin.source.kernel.org [145.40.73.55]) by gabe.freedesktop.org (Postfix) with ESMTPS id 544CE10E09A for ; Tue, 30 Jul 2024 10:31:57 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by sin.source.kernel.org (Postfix) with ESMTP id 0258ACE0EC5; Tue, 30 Jul 2024 10:31:55 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id CDAF8C32782; Tue, 30 Jul 2024 10:31:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1722335514; bh=2BsBaF8ZZh92sc8Gjp3gRHZJPrXZc8/roY8ksfG7VSg=; h=Subject:To:Cc:From:Date:From; b=mTnB51Qg5mhfNeOd3RxunXs6M9iZiCPtoHpHWyzlFB2OIxd/qTWs4ccHDv3igiTK9 pi50OyBIZJKylY2o1b9EYcxCNa8Ei5WgBeNR3aMdXZaQQPMnIOpbQUWlRJ/EG/zc+F X2RMYfq/zlPdrfOjczb8U45iL8LS7jtHBAmEcqcA= Subject: Patch "drm/udl: Remove DRM_CONNECTOR_POLL_HPD" has been added to the 6.10-stable tree To: airlied@redhat.com, alexander.deucher@amd.com, dri-devel@lists.freedesktop.org, gregkh@linuxfoundation.org, jani.nikula@intel.com, sean@poorly.run, tutankhamen@chromium.org, tzimmermann@suse.de Cc: From: Date: Tue, 30 Jul 2024 12:31:11 +0200 Message-ID: <2024073011-unguided-duller-3b89@gregkh> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit X-stable: commit X-Patchwork-Hint: ignore X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" This is a note to let you know that I've just added the patch titled drm/udl: Remove DRM_CONNECTOR_POLL_HPD to the 6.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: drm-udl-remove-drm_connector_poll_hpd.patch and it can be found in the queue-6.10 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let know about it. >From 5aed213c7c6c4f5dcb1a3ef146f493f18fe703dc Mon Sep 17 00:00:00 2001 From: Thomas Zimmermann Date: Fri, 10 May 2024 17:47:08 +0200 Subject: drm/udl: Remove DRM_CONNECTOR_POLL_HPD From: Thomas Zimmermann commit 5aed213c7c6c4f5dcb1a3ef146f493f18fe703dc upstream. DisplayLink devices do not generate hotplug events. Remove the poll flag DRM_CONNECTOR_POLL_HPD, as it may not be specified together with DRM_CONNECTOR_POLL_CONNECT or DRM_CONNECTOR_POLL_DISCONNECT. Signed-off-by: Thomas Zimmermann Fixes: afdfc4c6f55f ("drm/udl: Fixed problem with UDL adpater reconnection") Reviewed-by: Jani Nikula Cc: Robert Tarasov Cc: Alex Deucher Cc: Dave Airlie Cc: Sean Paul Cc: Thomas Zimmermann Cc: dri-devel@lists.freedesktop.org Cc: # v4.15+ Link: https://patchwork.freedesktop.org/patch/msgid/20240510154841.11370-2-tzimmermann@suse.de Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/udl/udl_modeset.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- a/drivers/gpu/drm/udl/udl_modeset.c +++ b/drivers/gpu/drm/udl/udl_modeset.c @@ -527,8 +527,7 @@ struct drm_connector *udl_connector_init drm_connector_helper_add(connector, &udl_connector_helper_funcs); - connector->polled = DRM_CONNECTOR_POLL_HPD | - DRM_CONNECTOR_POLL_CONNECT | + connector->polled = DRM_CONNECTOR_POLL_CONNECT | DRM_CONNECTOR_POLL_DISCONNECT; return connector; Patches currently in stable-queue which might be from tzimmermann@suse.de are queue-6.10/drm-fbdev-dma-fix-framebuffer-mode-for-big-endian-devices.patch queue-6.10/drm-qxl-pin-buffer-objects-for-internal-mappings.patch queue-6.10/drm-udl-remove-drm_connector_poll_hpd.patch queue-6.10/fbdev-vesafb-detect-vga-compatibility-from-screen-info-s-vesa-attributes.patch