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 6AC15C43217 for ; Fri, 7 Jan 2022 18:17:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1348736AbiAGSRd (ORCPT ); Fri, 7 Jan 2022 13:17:33 -0500 Received: from aposti.net ([89.234.176.197]:54142 "EHLO aposti.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S240782AbiAGSRc (ORCPT ); Fri, 7 Jan 2022 13:17:32 -0500 From: Paul Cercueil To: "Rafael J . Wysocki" Cc: Ulf Hansson , Jonathan Cameron , Lars-Peter Clausen , Linus Walleij , Arnd Bergmann , Len Brown , Pavel Machek , list@opendingux.net, linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org, linux-mips@vger.kernel.org, linux-mmc@vger.kernel.org, linux-pm@vger.kernel.org, Paul Cercueil Subject: [PATCH v3 0/6] DEV_PM_OPS macros rework v3 Date: Fri, 7 Jan 2022 18:17:17 +0000 Message-Id: <20220107181723.54392-1-paul@crapouillou.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, A V2 of my patchset that tweaks a bit the *_DEV_PM_OPS() macros that were introduced recently. Changes since V2: * [1/6]: - Keep UNIVERSAL_DEV_PM_OPS() macro deprecated - Rework commit message * [3/6]: - Reorder the code to have non-private macros together in the file - Add comment about the necesity to use the new export macro when the dev_pm_ops has to be exported * [5/6]: Add comment about the necesity to use the new export macro when the dev_pm_ops has to be exported Cheers, -Paul Paul Cercueil (6): PM: core: Remove DEFINE_UNIVERSAL_DEV_PM_OPS() macro PM: core: Remove static qualifier in DEFINE_SIMPLE_DEV_PM_OPS macro PM: core: Add EXPORT[_GPL]_SIMPLE_DEV_PM_OPS macros PM: runtime: Add DEFINE_RUNTIME_DEV_PM_OPS() macro PM: runtime: Add EXPORT[_GPL]_RUNTIME_DEV_PM_OPS macros iio: pressure: bmp280: Use new PM macros drivers/iio/pressure/bmp280-core.c | 11 ++---- drivers/iio/pressure/bmp280-i2c.c | 2 +- drivers/iio/pressure/bmp280-spi.c | 2 +- drivers/mmc/host/jz4740_mmc.c | 4 +-- drivers/mmc/host/mxcmmc.c | 2 +- include/linux/pm.h | 55 ++++++++++++++++++++++-------- include/linux/pm_runtime.h | 24 +++++++++++++ 7 files changed, 71 insertions(+), 29 deletions(-) -- 2.34.1