From: Jisheng Zhang <jszhang@kernel.org>
To: "Ulf Hansson" <ulf.hansson@linaro.org>,
"Aubin Constans" <aubin.constans@microchip.com>,
"Nicolas Ferre" <nicolas.ferre@microchip.com>,
"Alexandre Belloni" <alexandre.belloni@bootlin.com>,
"Claudiu Beznea" <claudiu.beznea@tuxon.dev>,
"Manuel Lauss" <manuel.lauss@gmail.com>,
"Michał Mirosław" <mirq-linux@rere.qmqm.pl>,
"Jaehoon Chung" <jh80.chung@samsung.com>,
"Krzysztof Kozlowski" <krzk@kernel.org>,
"Alim Akhtar" <alim.akhtar@samsung.com>,
"Heiko Stuebner" <heiko@sntech.de>,
"Russell King" <linux@armlinux.org.uk>,
"Chaotian Jing" <chaotian.jing@mediatek.com>,
"Matthias Brugger" <matthias.bgg@gmail.com>,
"AngeloGioacchino Del Regno"
<angelogioacchino.delregno@collabora.com>,
"Shawn Guo" <shawnguo@kernel.org>,
"Sascha Hauer" <s.hauer@pengutronix.de>,
"Pengutronix Kernel Team" <kernel@pengutronix.de>,
"Fabio Estevam" <festevam@gmail.com>,
"Adrian Hunter" <adrian.hunter@intel.com>,
"Kamal Dasu" <kamal.dasu@broadcom.com>,
"Al Cooper" <alcooperx@gmail.com>,
"Broadcom internal kernel review list"
<bcm-kernel-feedback-list@broadcom.com>,
"Florian Fainelli" <florian.fainelli@broadcom.com>,
"Haibo Chen" <haibo.chen@nxp.com>,
"Michal Simek" <michal.simek@amd.com>,
"Eugen Hristev" <eugen.hristev@linaro.org>,
"Vignesh Raghavendra" <vigneshr@ti.com>,
"Ben Dooks" <ben-linux@fluff.org>,
"Viresh Kumar" <vireshk@kernel.org>,
"Orson Zhai" <orsonzhai@gmail.com>,
"Baolin Wang" <baolin.wang@linux.alibaba.com>,
"Chunyan Zhang" <zhang.lyra@gmail.com>,
"Patrice Chotard" <patrice.chotard@foss.st.com>,
"Thierry Reding" <thierry.reding@gmail.com>,
"Jonathan Hunter" <jonathanh@nvidia.com>,
"Chen-Yu Tsai" <wens@csie.org>,
"Jernej Skrabec" <jernej.skrabec@gmail.com>,
"Samuel Holland" <samuel@sholland.org>,
"Alexey Charkov" <alchark@gmail.com>
Cc: linux-mmc@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH 00/38] mmc: host: use modern PM macros
Date: Fri, 15 Aug 2025 09:33:35 +0800 [thread overview]
Message-ID: <20250815013413.28641-1-jszhang@kernel.org> (raw)
Use the modern PM macros for the suspend and resume functions to be
automatically dropped by the compiler when CONFIG_PM or
CONFIG_PM_SLEEP are disabled, without having to use #ifdef guards or
__maybe_unused.
This has the advantage of always compiling these functions in,
independently of any Kconfig option. Thanks to that, bugs and other
regressions are subsequently easier to catch.
Previously, I only cleaned up the host drivers which I used, e.g
sdhci-of-dwcmshc, sdhci-pxav3 and sdhci-xenon, these are both compile
tested and functionality tested. But then I also cleaned up other
host drivers, but they are compile-tested only.
Jisheng Zhang (38):
sdhci: add some simple inline functions for !CONFIG_PM
mmc: sdhci-of-dwcmshc: use modern PM macros
mmc: sdhci-xenon: use modern PM macros
mmc: sdhci-pxav3: use modern PM macros
mmc: sunxi: use modern PM macros
mmc: alcor: use modern PM macros
mmc: atmel: use modern PM macros
mmc: au1xmmc: use modern PM macros
mmc: cb710-mmc: use modern PM macros
mmc: davinci_mmc: use modern PM macros
mmc: mmci: use modern PM macros
mmc: mxs-mmc: use modern PM macros
mmc: omap_hsmmc: use modern PM macros
mmc: rtsx_usb_sdmmc: use modern PM macros
mmc: sdhci-acpi: use modern PM macros
mmc: sdhci_am654: use modern PM macros
mmc: sdhci-brcmstb: use modern PM macros
mmc: sdhci-esdhc-imx: use modern PM macros
mmc: sdhci-of-arasan: use modern PM macros
mmc: sdhci-of-at91: use modern PM macros
mmc: sdhci-of-esdhc: use modern PM macros
mmc: sdhci-omap: use modern PM macros
mmc: sdhci-cadence: use modern PM macros
mmc: sdhci-s3c: use modern PM macros
mmc: sdhci-spear: use modern PM macros
mmc: sdhci-sprd: use modern PM macros
mmc: sdhci-st: use modern PM macros
mmc: sdhci-tegra: use modern PM macros
mmc: sh_mmicf: use modern PM macros
mmc: toshsd: use modern PM macros
mmc: wmt-sdmmc: use modern PM macros
mmc: mtk-sd: use modern PM macros
mmc: sdhci-msm: use modern PM macros
mmc: via-sdmmc: use modern PM macros
mmc: dw_mmc: exynos: use modern PM macros
mmc: dw_mmc-k3: use modern PM macros
mmc: dw_mmc-pci: use modern PM macros
mmc: dw_mmc-rockchip: use modern PM macros
drivers/mmc/host/alcor.c | 8 +++-----
drivers/mmc/host/atmel-mci.c | 9 +++------
drivers/mmc/host/au1xmmc.c | 18 +++++++-----------
drivers/mmc/host/cb710-mmc.c | 19 +++++++++----------
drivers/mmc/host/davinci_mmc.c | 14 +++-----------
drivers/mmc/host/dw_mmc-exynos.c | 13 +++----------
drivers/mmc/host/dw_mmc-k3.c | 9 +++------
drivers/mmc/host/dw_mmc-pci.c | 9 +++------
drivers/mmc/host/dw_mmc-rockchip.c | 9 +++------
drivers/mmc/host/dw_mmc.h | 3 +++
drivers/mmc/host/mmci.c | 9 +++------
drivers/mmc/host/mtk-sd.c | 14 +++++++-------
drivers/mmc/host/mxs-mmc.c | 6 ++----
drivers/mmc/host/omap_hsmmc.c | 13 ++++---------
drivers/mmc/host/rtsx_usb_sdmmc.c | 7 ++-----
drivers/mmc/host/sdhci-acpi.c | 18 ++++--------------
drivers/mmc/host/sdhci-brcmstb.c | 8 ++------
drivers/mmc/host/sdhci-cadence.c | 8 ++------
drivers/mmc/host/sdhci-esdhc-imx.c | 13 +++----------
drivers/mmc/host/sdhci-msm.c | 21 +++++++++------------
drivers/mmc/host/sdhci-of-arasan.c | 8 +++-----
drivers/mmc/host/sdhci-of-at91.c | 12 +++---------
drivers/mmc/host/sdhci-of-dwcmshc.c | 13 +++----------
drivers/mmc/host/sdhci-of-esdhc.c | 8 ++------
drivers/mmc/host/sdhci-omap.c | 18 +++++++-----------
drivers/mmc/host/sdhci-pxav3.c | 11 +++--------
drivers/mmc/host/sdhci-s3c.c | 11 +++--------
drivers/mmc/host/sdhci-spear.c | 6 ++----
drivers/mmc/host/sdhci-sprd.c | 10 +++-------
drivers/mmc/host/sdhci-st.c | 6 ++----
drivers/mmc/host/sdhci-tegra.c | 13 +++++--------
drivers/mmc/host/sdhci-xenon.c | 13 +++----------
drivers/mmc/host/sdhci.h | 7 +++++++
drivers/mmc/host/sdhci_am654.c | 10 +++-------
drivers/mmc/host/sh_mmcif.c | 8 ++------
drivers/mmc/host/sunxi-mmc.c | 11 +++--------
drivers/mmc/host/toshsd.c | 8 ++------
drivers/mmc/host/via-sdmmc.c | 10 +++++-----
drivers/mmc/host/wmt-sdmmc.c | 16 ++--------------
39 files changed, 141 insertions(+), 286 deletions(-)
--
2.50.0
next reply other threads:[~2025-08-15 1:51 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-15 1:33 Jisheng Zhang [this message]
2025-08-15 1:33 ` [PATCH 01/38] sdhci: add some simple inline functions for !CONFIG_PM Jisheng Zhang
2025-08-18 11:29 ` Adrian Hunter
2025-08-15 1:33 ` [PATCH 02/38] mmc: sdhci-of-dwcmshc: use modern PM macros Jisheng Zhang
2025-08-18 18:30 ` Drew Fustini
2025-08-15 1:33 ` [PATCH 03/38] mmc: sdhci-xenon: " Jisheng Zhang
2025-08-15 1:33 ` [PATCH 04/38] mmc: sdhci-pxav3: " Jisheng Zhang
2025-08-15 1:33 ` [PATCH 05/38] mmc: sunxi: " Jisheng Zhang
2025-08-15 1:33 ` [PATCH 06/38] mmc: alcor: " Jisheng Zhang
2025-08-15 1:33 ` [PATCH 07/38] mmc: atmel: " Jisheng Zhang
2025-08-15 1:33 ` [PATCH 08/38] mmc: au1xmmc: " Jisheng Zhang
2025-08-15 1:33 ` [PATCH 09/38] mmc: cb710-mmc: " Jisheng Zhang
2025-08-20 19:21 ` Michał Mirosław
2025-08-15 1:33 ` [PATCH 10/38] mmc: davinci_mmc: " Jisheng Zhang
2025-08-15 1:33 ` [PATCH 11/38] mmc: mmci: " Jisheng Zhang
2025-08-15 1:33 ` [PATCH 12/38] mmc: mxs-mmc: " Jisheng Zhang
2025-08-15 1:33 ` [PATCH 13/38] mmc: omap_hsmmc: " Jisheng Zhang
2025-08-15 1:33 ` [PATCH 14/38] mmc: rtsx_usb_sdmmc: " Jisheng Zhang
2025-08-15 1:33 ` [PATCH 15/38] mmc: sdhci-acpi: " Jisheng Zhang
2025-08-18 10:40 ` Adrian Hunter
2025-08-15 1:33 ` [PATCH 16/38] mmc: sdhci_am654: " Jisheng Zhang
2025-08-15 1:33 ` [PATCH 17/38] mmc: sdhci-brcmstb: " Jisheng Zhang
2025-08-15 1:33 ` [PATCH 18/38] mmc: sdhci-esdhc-imx: " Jisheng Zhang
2025-08-15 3:23 ` Bough Chen
2025-08-16 6:03 ` Jisheng Zhang
2025-08-18 12:15 ` Jisheng Zhang
2025-08-19 3:48 ` Bough Chen
2025-08-19 11:59 ` Jisheng Zhang
2025-08-20 2:15 ` Bough Chen
2025-08-15 1:33 ` [PATCH 19/38] mmc: sdhci-of-arasan: " Jisheng Zhang
2025-08-15 1:33 ` [PATCH 20/38] mmc: sdhci-of-at91: " Jisheng Zhang
2025-08-15 1:33 ` [PATCH 21/38] mmc: sdhci-of-esdhc: " Jisheng Zhang
2025-08-15 1:33 ` [PATCH 22/38] mmc: sdhci-omap: " Jisheng Zhang
2025-08-15 1:33 ` [PATCH 23/38] mmc: sdhci-cadence: " Jisheng Zhang
2025-08-15 1:33 ` [PATCH 24/38] mmc: sdhci-s3c: " Jisheng Zhang
2025-08-15 1:34 ` [PATCH 25/38] mmc: sdhci-spear: " Jisheng Zhang
2025-08-18 6:38 ` Viresh Kumar
2025-08-15 1:34 ` [PATCH 26/38] mmc: sdhci-sprd: " Jisheng Zhang
2025-08-15 1:34 ` [PATCH 27/38] mmc: sdhci-st: " Jisheng Zhang
2025-08-18 8:49 ` Patrice CHOTARD
2025-08-15 1:34 ` [PATCH 28/38] mmc: sdhci-tegra: " Jisheng Zhang
2025-08-15 1:34 ` [PATCH 29/38] mmc: sh_mmicf: " Jisheng Zhang
2025-08-15 1:34 ` [PATCH 30/38] mmc: toshsd: " Jisheng Zhang
2025-08-15 1:34 ` [PATCH 31/38] mmc: wmt-sdmmc: " Jisheng Zhang
2025-08-15 1:34 ` [PATCH 32/38] mmc: mtk-sd: " Jisheng Zhang
2025-08-15 1:34 ` [PATCH 33/38] mmc: sdhci-msm: " Jisheng Zhang
2025-08-15 1:34 ` [PATCH 34/38] mmc: via-sdmmc: " Jisheng Zhang
2025-08-15 1:34 ` [PATCH 35/38] mmc: dw_mmc: exynos: " Jisheng Zhang
2025-08-15 1:34 ` [PATCH 36/38] mmc: dw_mmc-k3: " Jisheng Zhang
2025-08-15 1:34 ` [PATCH 37/38] mmc: dw_mmc-pci: " Jisheng Zhang
2025-08-15 1:34 ` [PATCH 38/38] mmc: dw_mmc-rockchip: " Jisheng Zhang
2025-08-22 10:15 ` [PATCH 00/38] mmc: host: " Ulf Hansson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250815013413.28641-1-jszhang@kernel.org \
--to=jszhang@kernel.org \
--cc=adrian.hunter@intel.com \
--cc=alchark@gmail.com \
--cc=alcooperx@gmail.com \
--cc=alexandre.belloni@bootlin.com \
--cc=alim.akhtar@samsung.com \
--cc=angelogioacchino.delregno@collabora.com \
--cc=aubin.constans@microchip.com \
--cc=baolin.wang@linux.alibaba.com \
--cc=bcm-kernel-feedback-list@broadcom.com \
--cc=ben-linux@fluff.org \
--cc=chaotian.jing@mediatek.com \
--cc=claudiu.beznea@tuxon.dev \
--cc=eugen.hristev@linaro.org \
--cc=festevam@gmail.com \
--cc=florian.fainelli@broadcom.com \
--cc=haibo.chen@nxp.com \
--cc=heiko@sntech.de \
--cc=jernej.skrabec@gmail.com \
--cc=jh80.chung@samsung.com \
--cc=jonathanh@nvidia.com \
--cc=kamal.dasu@broadcom.com \
--cc=kernel@pengutronix.de \
--cc=krzk@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=manuel.lauss@gmail.com \
--cc=matthias.bgg@gmail.com \
--cc=michal.simek@amd.com \
--cc=mirq-linux@rere.qmqm.pl \
--cc=nicolas.ferre@microchip.com \
--cc=orsonzhai@gmail.com \
--cc=patrice.chotard@foss.st.com \
--cc=s.hauer@pengutronix.de \
--cc=samuel@sholland.org \
--cc=shawnguo@kernel.org \
--cc=thierry.reding@gmail.com \
--cc=ulf.hansson@linaro.org \
--cc=vigneshr@ti.com \
--cc=vireshk@kernel.org \
--cc=wens@csie.org \
--cc=zhang.lyra@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).