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 50CDFC4167B for ; Tue, 29 Nov 2022 21:48:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237093AbiK2VsI (ORCPT ); Tue, 29 Nov 2022 16:48:08 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34618 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237061AbiK2VsG (ORCPT ); Tue, 29 Nov 2022 16:48:06 -0500 Received: from phobos.denx.de (phobos.denx.de [IPv6:2a01:238:438b:c500:173d:9f52:ddab:ee01]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 79D2E65E50 for ; Tue, 29 Nov 2022 13:48:05 -0800 (PST) Received: from [127.0.0.1] (p578adb1c.dip0.t-ipconnect.de [87.138.219.28]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: marex@denx.de) by phobos.denx.de (Postfix) with ESMTPSA id 8A9ED80431; Tue, 29 Nov 2022 22:48:01 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1669758482; bh=mANR0UVrLcSrd9Dn90ATJVmgqbNIRPSwBxDgu+wIe9M=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=vL7xA2LWjrg3HdMONbIhy33xgvY5WxeAeBhVY+o+WgYQ2Knxt/aHvV1a241kQcGtN JxOUI7i1vk0bfJyeuNZDFFbBz0XLteCtdYqRt1t5Pczq3jfyUU75zSanOgodfD2pec BMCeRskb62vn18mchScNmFDNTW8T17aJZ+maITMLzARcGsE2yjHs/UlwjcvfxoCz8S iJQny+Qls8GYDzYHEwEfCz2RxSVkQ9IQwvoLWO6t7mWZwnZBakQPi/OzZv+Ywftl8X sazTSCXDi60pAd/cxRUVb2lk/KeI4uWokSOFE1s+L5ej9l9aVWKdhb5RMNX68IeCGv 5Q67ZaXlv6W5w== Message-ID: Date: Tue, 29 Nov 2022 22:48:00 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.5.0 Subject: Re: [PATCH v2 07/26] drm: mxsfb: Define and use generic PM ops To: Paul Cercueil , David Airlie , Daniel Vetter Cc: dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, Stefan Agner , Shawn Guo , Sascha Hauer , Pengutronix Kernel Team , Fabio Estevam , NXP Linux Team , linux-arm-kernel@lists.infradead.org References: <20221129191733.137897-1-paul@crapouillou.net> <20221129191733.137897-8-paul@crapouillou.net> Content-Language: en-US From: Marek Vasut In-Reply-To: <20221129191733.137897-8-paul@crapouillou.net> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamav-milter 0.103.6 at phobos.denx.de X-Virus-Status: Clean Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 11/29/22 20:17, Paul Cercueil wrote: > Use the new DEFINE_DRM_MODE_CONFIG_HELPER_PM_OPS() macro to create a > "struct dev_pm_ops" that can be used by this driver, instead of using > custom PM callbacks with the same behaviour. > > v2: Use the DEFINE_DRM_MODE_CONFIG_HELPER_PM_OPS() macro instead of an > exported dev_pm_ops. > > Signed-off-by: Paul Cercueil [...] Reviewed-by: Marek Vasut