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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 44FDAC83F2C for ; Mon, 4 Sep 2023 08:01:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S244518AbjIDIBD (ORCPT ); Mon, 4 Sep 2023 04:01:03 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44858 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1346896AbjIDIBA (ORCPT ); Mon, 4 Sep 2023 04:01:00 -0400 Received: from sin.source.kernel.org (sin.source.kernel.org [145.40.73.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 08ECE19B for ; Mon, 4 Sep 2023 01:00:53 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by sin.source.kernel.org (Postfix) with ESMTPS id 359F5CE0E3E for ; Mon, 4 Sep 2023 08:00:52 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E8251C433C8; Mon, 4 Sep 2023 08:00:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1693814450; bh=E2sdQ3VRZz3ffzE37I9XdXa3InB+72fEKo9Caj92rks=; h=Date:From:To:Subject:In-Reply-To:References:Cc:From; b=lGHu3MaezN0uZe/YAn6VmTf1ABx7OeJls8Nu8zSTwlu3Zzn1YrT66LrpsAWedGpW2 OKaZ1acUSVGs0eY9FRdXM1s3KoO9EVLwh1X7X+7yQBogV5WBUfZSbuyv0EXBtmlEO9 fdHXndrxwKMGtvNfcQTXZhfRBdNNuF6wrich4VRqL2JAfPikHeEdenZS3RIJD+/3cp fW4hypAu9WRGGk2C0f3xIt5FuDHbpA9ZDOSL+oVu+c5imKXlv5GNskX6b6Chv1fj4U klRzu6aJuEdXQwhwlwZESGiB73G52SGhOXjav+KN6HNv4K1Ih3yxnHh651WhpcfhyL s2XQDdJcA8Jww== Message-ID: Date: Mon, 04 Sep 2023 08:00:47 +0000 From: "Maxime Ripard" To: "Douglas Anderson" Subject: Re: [RFT PATCH 6/6] drm/hisilicon/kirin: Call drm_atomic_helper_shutdown() at shutdown/unbind time In-Reply-To: <20230901163944.RFT.6.I21e0916bbd276033f7d31979c0da171458dedd4d@changeid> References: <20230901163944.RFT.6.I21e0916bbd276033f7d31979c0da171458dedd4d@changeid> Cc: airlied@gmail.com, daniel@ffwll.ch, dri-devel@lists.freedesktop.org, javierm@redhat.com, jstultz@google.com, kong.kongxinwei@hisilicon.com, linux-kernel@vger.kernel.org, robh@kernel.org, steven.price@arm.com, sumit.semwal@linaro.org, tiantao6@hisilicon.com, tzimmermann@suse.de, u.kleine-koenig@pengutronix.de, xinliang.liu@linaro.org, yongqin.liu@linaro.org, "Maxime Ripard" Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 1 Sep 2023 16:39:57 -0700, Douglas Anderson wrote: > Based on grepping through the source code this driver appears to be > missing a call to drm_atomic_helper_shutdown() at system shutdown time > and at driver unbind time. Among other things, this means that if a > panel is in use that it won't be cleanly powered off at system > shutdown time. > > [ ... ] Acked-by: Maxime Ripard Thanks! Maxime