All of lore.kernel.org
 help / color / mirror / Atom feed
From: Li Zetao <lizetao1@huawei.com>
To: <miquel.raynal@bootlin.com>, <richard@nod.at>, <vigneshr@ti.com>,
	<michal.simek@amd.com>, <vz@mleia.com>, <matthias.bgg@gmail.com>,
	<angelogioacchino.delregno@collabora.com>,
	<mcoquelin.stm32@gmail.com>, <alexandre.torgue@foss.st.com>,
	<wens@csie.org>, <jernej.skrabec@gmail.com>,
	<samuel@sholland.org>, <stefan@agner.ch>,
	<tudor.ambarus@linaro.org>, <pratyush@kernel.org>,
	<michael@walle.cc>, <frank.li@vivo.com>
Cc: <robh@kernel.org>, <martin.blumenstingl@googlemail.com>,
	<philmd@linaro.org>, <geert+renesas@glider.be>,
	<u.kleine-koenig@pengutronix.de>, <rogerq@kernel.org>,
	<paul@crapouillou.net>, <nicolas.ferre@microchip.com>,
	<yangyingliang@huawei.com>, <dmitry.torokhov@gmail.com>,
	<heiko@sntech.de>, <christophe.leroy@csgroup.eu>,
	<christophe.kerello@foss.st.com>, <jinpu.wang@ionos.com>,
	<lizetao1@huawei.com>, <linux-mtd@lists.infradead.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-mediatek@lists.infradead.org>,
	<linux-stm32@st-md-mailman.stormreply.com>,
	<linux-sunxi@lists.linux.dev>
Subject: [PATCH -next 10/11] mtd: rawnand: vf610_nfc: Use helper function devm_clk_get_enabled()
Date: Thu, 17 Aug 2023 10:45:08 +0800	[thread overview]
Message-ID: <20230817024509.3951629-11-lizetao1@huawei.com> (raw)
In-Reply-To: <20230817024509.3951629-1-lizetao1@huawei.com>

After the commit 7ef9651e9792 ("clk: Provide new devm_clk helpers for
prepared and enabled clocks"), it can replace the pair of functions,
devm_clk_get() and clk_prepare_enable() with a single helper function
devm_clk_get_enabled(). Moreover, the driver will keeps a clock prepared
(or enabled) during the whole lifetime of the driver, it is unnecessary to
unprepare and disable clock explicitly when remove driver or in the error
handling path.

Signed-off-by: Li Zetao <lizetao1@huawei.com>
---
 drivers/mtd/nand/raw/vf610_nfc.c | 29 +++++++++--------------------
 1 file changed, 9 insertions(+), 20 deletions(-)

diff --git a/drivers/mtd/nand/raw/vf610_nfc.c b/drivers/mtd/nand/raw/vf610_nfc.c
index dcdf33dbaef2..1ce9d5c2b1f7 100644
--- a/drivers/mtd/nand/raw/vf610_nfc.c
+++ b/drivers/mtd/nand/raw/vf610_nfc.c
@@ -834,21 +834,15 @@ static int vf610_nfc_probe(struct platform_device *pdev)
 	if (IS_ERR(nfc->regs))
 		return PTR_ERR(nfc->regs);
 
-	nfc->clk = devm_clk_get(&pdev->dev, NULL);
-	if (IS_ERR(nfc->clk))
+	nfc->clk = devm_clk_get_enabled(&pdev->dev, NULL);
+	if (IS_ERR(nfc->clk)) {
+		dev_err(nfc->dev, "Unable to get and enable clock!\n");
 		return PTR_ERR(nfc->clk);
-
-	err = clk_prepare_enable(nfc->clk);
-	if (err) {
-		dev_err(nfc->dev, "Unable to enable clock!\n");
-		return err;
 	}
 
 	of_id = of_match_device(vf610_nfc_dt_ids, &pdev->dev);
-	if (!of_id) {
-		err = -ENODEV;
-		goto err_disable_clk;
-	}
+	if (!of_id)
+		return -ENODEV;
 
 	nfc->variant = (enum vf610_nfc_variant)of_id->data;
 
@@ -858,9 +852,8 @@ static int vf610_nfc_probe(struct platform_device *pdev)
 			if (nand_get_flash_node(chip)) {
 				dev_err(nfc->dev,
 					"Only one NAND chip supported!\n");
-				err = -EINVAL;
 				of_node_put(child);
-				goto err_disable_clk;
+				return -EINVAL;
 			}
 
 			nand_set_flash_node(chip, child);
@@ -869,8 +862,7 @@ static int vf610_nfc_probe(struct platform_device *pdev)
 
 	if (!nand_get_flash_node(chip)) {
 		dev_err(nfc->dev, "NAND chip sub-node missing!\n");
-		err = -ENODEV;
-		goto err_disable_clk;
+		return -ENODEV;
 	}
 
 	chip->options |= NAND_NO_SUBPAGE_WRITE;
@@ -880,7 +872,7 @@ static int vf610_nfc_probe(struct platform_device *pdev)
 	err = devm_request_irq(nfc->dev, irq, vf610_nfc_irq, 0, DRV_NAME, nfc);
 	if (err) {
 		dev_err(nfc->dev, "Error requesting IRQ!\n");
-		goto err_disable_clk;
+		return err;
 	}
 
 	vf610_nfc_preinit_controller(nfc);
@@ -892,7 +884,7 @@ static int vf610_nfc_probe(struct platform_device *pdev)
 	/* Scan the NAND chip */
 	err = nand_scan(chip, 1);
 	if (err)
-		goto err_disable_clk;
+		return err;
 
 	platform_set_drvdata(pdev, nfc);
 
@@ -904,8 +896,6 @@ static int vf610_nfc_probe(struct platform_device *pdev)
 
 err_cleanup_nand:
 	nand_cleanup(chip);
-err_disable_clk:
-	clk_disable_unprepare(nfc->clk);
 	return err;
 }
 
@@ -918,7 +908,6 @@ static void vf610_nfc_remove(struct platform_device *pdev)
 	ret = mtd_device_unregister(nand_to_mtd(chip));
 	WARN_ON(ret);
 	nand_cleanup(chip);
-	clk_disable_unprepare(nfc->clk);
 }
 
 #ifdef CONFIG_PM_SLEEP
-- 
2.34.1


WARNING: multiple messages have this Message-ID (diff)
From: Li Zetao <lizetao1@huawei.com>
To: <miquel.raynal@bootlin.com>, <richard@nod.at>, <vigneshr@ti.com>,
	<michal.simek@amd.com>, <vz@mleia.com>, <matthias.bgg@gmail.com>,
	<angelogioacchino.delregno@collabora.com>,
	<mcoquelin.stm32@gmail.com>, <alexandre.torgue@foss.st.com>,
	<wens@csie.org>, <jernej.skrabec@gmail.com>,
	<samuel@sholland.org>, <stefan@agner.ch>,
	<tudor.ambarus@linaro.org>, <pratyush@kernel.org>,
	<michael@walle.cc>, <frank.li@vivo.com>
Cc: <robh@kernel.org>, <martin.blumenstingl@googlemail.com>,
	<philmd@linaro.org>, <geert+renesas@glider.be>,
	<u.kleine-koenig@pengutronix.de>, <rogerq@kernel.org>,
	<paul@crapouillou.net>, <nicolas.ferre@microchip.com>,
	<yangyingliang@huawei.com>, <dmitry.torokhov@gmail.com>,
	<heiko@sntech.de>, <christophe.leroy@csgroup.eu>,
	<christophe.kerello@foss.st.com>, <jinpu.wang@ionos.com>,
	<lizetao1@huawei.com>, <linux-mtd@lists.infradead.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-mediatek@lists.infradead.org>,
	<linux-stm32@st-md-mailman.stormreply.com>,
	<linux-sunxi@lists.linux.dev>
Subject: [PATCH -next 10/11] mtd: rawnand: vf610_nfc: Use helper function devm_clk_get_enabled()
Date: Thu, 17 Aug 2023 10:45:08 +0800	[thread overview]
Message-ID: <20230817024509.3951629-11-lizetao1@huawei.com> (raw)
In-Reply-To: <20230817024509.3951629-1-lizetao1@huawei.com>

After the commit 7ef9651e9792 ("clk: Provide new devm_clk helpers for
prepared and enabled clocks"), it can replace the pair of functions,
devm_clk_get() and clk_prepare_enable() with a single helper function
devm_clk_get_enabled(). Moreover, the driver will keeps a clock prepared
(or enabled) during the whole lifetime of the driver, it is unnecessary to
unprepare and disable clock explicitly when remove driver or in the error
handling path.

Signed-off-by: Li Zetao <lizetao1@huawei.com>
---
 drivers/mtd/nand/raw/vf610_nfc.c | 29 +++++++++--------------------
 1 file changed, 9 insertions(+), 20 deletions(-)

diff --git a/drivers/mtd/nand/raw/vf610_nfc.c b/drivers/mtd/nand/raw/vf610_nfc.c
index dcdf33dbaef2..1ce9d5c2b1f7 100644
--- a/drivers/mtd/nand/raw/vf610_nfc.c
+++ b/drivers/mtd/nand/raw/vf610_nfc.c
@@ -834,21 +834,15 @@ static int vf610_nfc_probe(struct platform_device *pdev)
 	if (IS_ERR(nfc->regs))
 		return PTR_ERR(nfc->regs);
 
-	nfc->clk = devm_clk_get(&pdev->dev, NULL);
-	if (IS_ERR(nfc->clk))
+	nfc->clk = devm_clk_get_enabled(&pdev->dev, NULL);
+	if (IS_ERR(nfc->clk)) {
+		dev_err(nfc->dev, "Unable to get and enable clock!\n");
 		return PTR_ERR(nfc->clk);
-
-	err = clk_prepare_enable(nfc->clk);
-	if (err) {
-		dev_err(nfc->dev, "Unable to enable clock!\n");
-		return err;
 	}
 
 	of_id = of_match_device(vf610_nfc_dt_ids, &pdev->dev);
-	if (!of_id) {
-		err = -ENODEV;
-		goto err_disable_clk;
-	}
+	if (!of_id)
+		return -ENODEV;
 
 	nfc->variant = (enum vf610_nfc_variant)of_id->data;
 
@@ -858,9 +852,8 @@ static int vf610_nfc_probe(struct platform_device *pdev)
 			if (nand_get_flash_node(chip)) {
 				dev_err(nfc->dev,
 					"Only one NAND chip supported!\n");
-				err = -EINVAL;
 				of_node_put(child);
-				goto err_disable_clk;
+				return -EINVAL;
 			}
 
 			nand_set_flash_node(chip, child);
@@ -869,8 +862,7 @@ static int vf610_nfc_probe(struct platform_device *pdev)
 
 	if (!nand_get_flash_node(chip)) {
 		dev_err(nfc->dev, "NAND chip sub-node missing!\n");
-		err = -ENODEV;
-		goto err_disable_clk;
+		return -ENODEV;
 	}
 
 	chip->options |= NAND_NO_SUBPAGE_WRITE;
@@ -880,7 +872,7 @@ static int vf610_nfc_probe(struct platform_device *pdev)
 	err = devm_request_irq(nfc->dev, irq, vf610_nfc_irq, 0, DRV_NAME, nfc);
 	if (err) {
 		dev_err(nfc->dev, "Error requesting IRQ!\n");
-		goto err_disable_clk;
+		return err;
 	}
 
 	vf610_nfc_preinit_controller(nfc);
@@ -892,7 +884,7 @@ static int vf610_nfc_probe(struct platform_device *pdev)
 	/* Scan the NAND chip */
 	err = nand_scan(chip, 1);
 	if (err)
-		goto err_disable_clk;
+		return err;
 
 	platform_set_drvdata(pdev, nfc);
 
@@ -904,8 +896,6 @@ static int vf610_nfc_probe(struct platform_device *pdev)
 
 err_cleanup_nand:
 	nand_cleanup(chip);
-err_disable_clk:
-	clk_disable_unprepare(nfc->clk);
 	return err;
 }
 
@@ -918,7 +908,6 @@ static void vf610_nfc_remove(struct platform_device *pdev)
 	ret = mtd_device_unregister(nand_to_mtd(chip));
 	WARN_ON(ret);
 	nand_cleanup(chip);
-	clk_disable_unprepare(nfc->clk);
 }
 
 #ifdef CONFIG_PM_SLEEP
-- 
2.34.1


______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

WARNING: multiple messages have this Message-ID (diff)
From: Li Zetao <lizetao1@huawei.com>
To: <miquel.raynal@bootlin.com>, <richard@nod.at>, <vigneshr@ti.com>,
	<michal.simek@amd.com>, <vz@mleia.com>, <matthias.bgg@gmail.com>,
	<angelogioacchino.delregno@collabora.com>,
	<mcoquelin.stm32@gmail.com>, <alexandre.torgue@foss.st.com>,
	<wens@csie.org>, <jernej.skrabec@gmail.com>,
	<samuel@sholland.org>, <stefan@agner.ch>,
	<tudor.ambarus@linaro.org>, <pratyush@kernel.org>,
	<michael@walle.cc>, <frank.li@vivo.com>
Cc: robh@kernel.org, paul@crapouillou.net, dmitry.torokhov@gmail.com,
	philmd@linaro.org, geert+renesas@glider.be,
	martin.blumenstingl@googlemail.com, yangyingliang@huawei.com,
	lizetao1@huawei.com, christophe.leroy@csgroup.eu,
	linux-sunxi@lists.linux.dev, rogerq@kernel.org,
	linux-mtd@lists.infradead.org, u.kleine-koenig@pengutronix.de,
	christophe.kerello@foss.st.com,
	linux-mediatek@lists.infradead.org, jinpu.wang@ionos.com,
	linux-stm32@st-md-mailman.stormreply.com,
	linux-arm-kernel@lists.infradead.org, heiko@sntech.de
Subject: [PATCH -next 10/11] mtd: rawnand: vf610_nfc: Use helper function devm_clk_get_enabled()
Date: Thu, 17 Aug 2023 10:45:08 +0800	[thread overview]
Message-ID: <20230817024509.3951629-11-lizetao1@huawei.com> (raw)
In-Reply-To: <20230817024509.3951629-1-lizetao1@huawei.com>

After the commit 7ef9651e9792 ("clk: Provide new devm_clk helpers for
prepared and enabled clocks"), it can replace the pair of functions,
devm_clk_get() and clk_prepare_enable() with a single helper function
devm_clk_get_enabled(). Moreover, the driver will keeps a clock prepared
(or enabled) during the whole lifetime of the driver, it is unnecessary to
unprepare and disable clock explicitly when remove driver or in the error
handling path.

Signed-off-by: Li Zetao <lizetao1@huawei.com>
---
 drivers/mtd/nand/raw/vf610_nfc.c | 29 +++++++++--------------------
 1 file changed, 9 insertions(+), 20 deletions(-)

diff --git a/drivers/mtd/nand/raw/vf610_nfc.c b/drivers/mtd/nand/raw/vf610_nfc.c
index dcdf33dbaef2..1ce9d5c2b1f7 100644
--- a/drivers/mtd/nand/raw/vf610_nfc.c
+++ b/drivers/mtd/nand/raw/vf610_nfc.c
@@ -834,21 +834,15 @@ static int vf610_nfc_probe(struct platform_device *pdev)
 	if (IS_ERR(nfc->regs))
 		return PTR_ERR(nfc->regs);
 
-	nfc->clk = devm_clk_get(&pdev->dev, NULL);
-	if (IS_ERR(nfc->clk))
+	nfc->clk = devm_clk_get_enabled(&pdev->dev, NULL);
+	if (IS_ERR(nfc->clk)) {
+		dev_err(nfc->dev, "Unable to get and enable clock!\n");
 		return PTR_ERR(nfc->clk);
-
-	err = clk_prepare_enable(nfc->clk);
-	if (err) {
-		dev_err(nfc->dev, "Unable to enable clock!\n");
-		return err;
 	}
 
 	of_id = of_match_device(vf610_nfc_dt_ids, &pdev->dev);
-	if (!of_id) {
-		err = -ENODEV;
-		goto err_disable_clk;
-	}
+	if (!of_id)
+		return -ENODEV;
 
 	nfc->variant = (enum vf610_nfc_variant)of_id->data;
 
@@ -858,9 +852,8 @@ static int vf610_nfc_probe(struct platform_device *pdev)
 			if (nand_get_flash_node(chip)) {
 				dev_err(nfc->dev,
 					"Only one NAND chip supported!\n");
-				err = -EINVAL;
 				of_node_put(child);
-				goto err_disable_clk;
+				return -EINVAL;
 			}
 
 			nand_set_flash_node(chip, child);
@@ -869,8 +862,7 @@ static int vf610_nfc_probe(struct platform_device *pdev)
 
 	if (!nand_get_flash_node(chip)) {
 		dev_err(nfc->dev, "NAND chip sub-node missing!\n");
-		err = -ENODEV;
-		goto err_disable_clk;
+		return -ENODEV;
 	}
 
 	chip->options |= NAND_NO_SUBPAGE_WRITE;
@@ -880,7 +872,7 @@ static int vf610_nfc_probe(struct platform_device *pdev)
 	err = devm_request_irq(nfc->dev, irq, vf610_nfc_irq, 0, DRV_NAME, nfc);
 	if (err) {
 		dev_err(nfc->dev, "Error requesting IRQ!\n");
-		goto err_disable_clk;
+		return err;
 	}
 
 	vf610_nfc_preinit_controller(nfc);
@@ -892,7 +884,7 @@ static int vf610_nfc_probe(struct platform_device *pdev)
 	/* Scan the NAND chip */
 	err = nand_scan(chip, 1);
 	if (err)
-		goto err_disable_clk;
+		return err;
 
 	platform_set_drvdata(pdev, nfc);
 
@@ -904,8 +896,6 @@ static int vf610_nfc_probe(struct platform_device *pdev)
 
 err_cleanup_nand:
 	nand_cleanup(chip);
-err_disable_clk:
-	clk_disable_unprepare(nfc->clk);
 	return err;
 }
 
@@ -918,7 +908,6 @@ static void vf610_nfc_remove(struct platform_device *pdev)
 	ret = mtd_device_unregister(nand_to_mtd(chip));
 	WARN_ON(ret);
 	nand_cleanup(chip);
-	clk_disable_unprepare(nfc->clk);
 }
 
 #ifdef CONFIG_PM_SLEEP
-- 
2.34.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2023-08-17  2:45 UTC|newest]

Thread overview: 174+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-17  2:44 [PATCH -next 00/11] mtd: Use devm_clk_get_enabled() to simplify the drivers Li Zetao
2023-08-17  2:44 ` Li Zetao
2023-08-17  2:44 ` Li Zetao
2023-08-17  2:44 ` [PATCH -next 01/11] mtd: spear_smi: Use helper function devm_clk_get_enabled() Li Zetao
2023-08-17  2:44   ` Li Zetao
2023-08-17  2:44   ` Li Zetao
2023-08-17  2:45 ` [PATCH -next 02/11] mtd: rawnand: arasan: " Li Zetao
2023-08-17  2:45   ` Li Zetao
2023-08-17  2:45   ` Li Zetao
2023-08-17  2:45 ` [PATCH -next 03/11] mtd: rawnand: fsmc: " Li Zetao
2023-08-17  2:45   ` Li Zetao
2023-08-17  2:45   ` Li Zetao
2023-08-17  8:31   ` Miquel Raynal
2023-08-17  8:31     ` Miquel Raynal
2023-08-17  8:31     ` Miquel Raynal
2023-08-17  2:45 ` [PATCH -next 04/11] mtd: rawnand: intel: " Li Zetao
2023-08-17  2:45   ` Li Zetao
2023-08-17  2:45   ` Li Zetao
2023-08-17  2:45 ` [PATCH -next 05/11] mtd: rawnand: lpc32xx_slc: " Li Zetao
2023-08-17  2:45   ` Li Zetao
2023-08-17  2:45   ` Li Zetao
2023-08-17  2:45 ` [PATCH -next 06/11] mtd: rawnand: mpc5121: " Li Zetao
2023-08-17  2:45   ` Li Zetao
2023-08-17  2:45   ` Li Zetao
2023-08-17  2:45 ` [PATCH -next 07/11] mtd: rawnand: mtk: " Li Zetao
2023-08-17  2:45   ` Li Zetao
2023-08-17  2:45   ` Li Zetao
2023-08-17  8:34   ` Miquel Raynal
2023-08-17  8:34     ` Miquel Raynal
2023-08-17  8:34     ` Miquel Raynal
2023-08-17  2:45 ` [PATCH -next 08/11] mtd: rawnand: stm32_fmc2: " Li Zetao
2023-08-17  2:45   ` Li Zetao
2023-08-17  2:45   ` Li Zetao
2023-08-17  2:45 ` [PATCH -next 09/11] mtd: rawnand: sunxi: " Li Zetao
2023-08-17  2:45   ` Li Zetao
2023-08-17  2:45   ` Li Zetao
2023-08-17  2:45 ` Li Zetao [this message]
2023-08-17  2:45   ` [PATCH -next 10/11] mtd: rawnand: vf610_nfc: " Li Zetao
2023-08-17  2:45   ` Li Zetao
2023-08-17  2:45 ` [PATCH -next 11/11] mtd: spi-nor: " Li Zetao
2023-08-17  2:45   ` Li Zetao
2023-08-17  2:45   ` Li Zetao
2023-08-17  8:37   ` Miquel Raynal
2023-08-17  8:37     ` Miquel Raynal
2023-08-17  8:37     ` Miquel Raynal
2023-08-18  7:46 ` [PATCH -next v2 00/12] mtd: Use devm_clk_get_*() helper function to simplify the drivers Li Zetao
2023-08-18  7:46   ` Li Zetao
2023-08-18  7:46   ` Li Zetao
2023-08-18  7:46   ` [PATCH -next v2 01/12] mtd: spear_smi: Use helper function devm_clk_get_enabled() Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  7:46   ` [PATCH -next v2 02/12] mtd: rawnand: arasan: " Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  8:10     ` Miquel Raynal
2023-08-18  8:10       ` Miquel Raynal
2023-08-18  8:10       ` Miquel Raynal
2023-08-18  8:12       ` Miquel Raynal
2023-08-18  8:12         ` Miquel Raynal
2023-08-18  8:12         ` Miquel Raynal
2023-08-21  3:17       ` [PATCH -next v3 00/12] mtd: Use devm_clk_get_*() helper function to simplify the drivers Li Zetao
2023-08-21  3:17         ` Li Zetao
2023-08-21  3:17         ` Li Zetao
2023-08-21  3:17         ` [PATCH -next v3 01/12] mtd: spear_smi: Use helper function devm_clk_get_enabled() Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  7:57           ` Miquel Raynal
2023-08-21  7:57             ` Miquel Raynal
2023-08-21  7:57             ` Miquel Raynal
2023-08-21  3:17         ` [PATCH -next v3 02/12] mtd: rawnand: arasan: " Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  7:58           ` Miquel Raynal
2023-08-21  7:58             ` Miquel Raynal
2023-08-21  7:58             ` Miquel Raynal
2023-08-21  3:17         ` [PATCH -next v3 03/12] mtd: rawnand: fsmc: " Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  7:58           ` Miquel Raynal
2023-08-21  7:58             ` Miquel Raynal
2023-08-21  7:58             ` Miquel Raynal
2023-08-21  3:17         ` [PATCH -next v3 04/12] mtd: rawnand: intel: " Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  7:58           ` Miquel Raynal
2023-08-21  7:58             ` Miquel Raynal
2023-08-21  7:58             ` Miquel Raynal
2023-08-21  3:17         ` [PATCH -next v3 05/12] mtd: rawnand: lpc32xx_slc: " Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  7:57           ` Miquel Raynal
2023-08-21  7:57             ` Miquel Raynal
2023-08-21  7:57             ` Miquel Raynal
2023-08-21  3:17         ` [PATCH -next v3 06/12] mtd: rawnand: mpc5121: " Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  7:57           ` Miquel Raynal
2023-08-21  7:57             ` Miquel Raynal
2023-08-21  7:57             ` Miquel Raynal
2023-08-21  3:17         ` [PATCH -next v3 07/12] mtd: rawnand: mtk: " Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  7:57           ` Miquel Raynal
2023-08-21  7:57             ` Miquel Raynal
2023-08-21  7:57             ` Miquel Raynal
2023-08-21  3:17         ` [PATCH -next v3 08/12] mtd: rawnand: stm32_fmc2: " Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  7:57           ` Miquel Raynal
2023-08-21  7:57             ` Miquel Raynal
2023-08-21  7:57             ` Miquel Raynal
2023-08-21  3:17         ` [PATCH -next v3 09/12] mtd: rawnand: sunxi: " Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  7:57           ` Miquel Raynal
2023-08-21  7:57             ` Miquel Raynal
2023-08-21  7:57             ` Miquel Raynal
2023-08-21  3:17         ` [PATCH -next v3 10/12] mtd: rawnand: vf610_nfc: " Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  3:17         ` [PATCH -next v3 11/12] mtd: spi-nor: nxp-spifi: " Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  7:38           ` Miquel Raynal
2023-08-21  7:38             ` Miquel Raynal
2023-08-21  7:38             ` Miquel Raynal
2023-08-21  7:54             ` Miquel Raynal
2023-08-21  7:54               ` Miquel Raynal
2023-08-21  7:54               ` Miquel Raynal
2023-08-21  3:17         ` [PATCH -next v3 12/12] mtd: rawnand: orion: Use helper function devm_clk_get_optional_enabled() Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  3:17           ` Li Zetao
2023-08-21  7:57           ` Miquel Raynal
2023-08-21  7:57             ` Miquel Raynal
2023-08-21  7:57             ` Miquel Raynal
2023-08-18  7:46   ` [PATCH -next v2 03/12] mtd: rawnand: fsmc: Use helper function devm_clk_get_enabled() Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  8:11     ` Miquel Raynal
2023-08-18  8:11       ` Miquel Raynal
2023-08-18  8:11       ` Miquel Raynal
2023-08-18  7:46   ` [PATCH -next v2 04/12] mtd: rawnand: intel: " Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  7:46   ` [PATCH -next v2 05/12] mtd: rawnand: lpc32xx_slc: " Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  7:46   ` [PATCH -next v2 06/12] mtd: rawnand: mpc5121: " Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  7:46   ` [PATCH -next v2 07/12] mtd: rawnand: mtk: " Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  7:46   ` [PATCH -next v2 08/12] mtd: rawnand: stm32_fmc2: " Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  7:46   ` [PATCH -next v2 09/12] mtd: rawnand: sunxi: " Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  7:46   ` [PATCH -next v2 10/12] mtd: rawnand: vf610_nfc: " Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  7:46   ` [PATCH -next v2 11/12] mtd: spi-nor: nxp-spifi: " Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18 10:19     ` Tudor Ambarus
2023-08-18 10:19       ` Tudor Ambarus
2023-08-18 10:19       ` Tudor Ambarus
2023-08-18  7:46   ` [PATCH -next v2 12/12] mtd: rawnand: orion: Use helper function devm_clk_get_optional_enabled() Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18  7:46     ` Li Zetao
2023-08-18 10:28   ` (subset) [PATCH -next v2 00/12] mtd: Use devm_clk_get_*() helper function to simplify the drivers Tudor Ambarus
2023-08-18 10:28     ` Tudor Ambarus
2023-08-18 10:28     ` Tudor Ambarus

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=20230817024509.3951629-11-lizetao1@huawei.com \
    --to=lizetao1@huawei.com \
    --cc=alexandre.torgue@foss.st.com \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=christophe.kerello@foss.st.com \
    --cc=christophe.leroy@csgroup.eu \
    --cc=dmitry.torokhov@gmail.com \
    --cc=frank.li@vivo.com \
    --cc=geert+renesas@glider.be \
    --cc=heiko@sntech.de \
    --cc=jernej.skrabec@gmail.com \
    --cc=jinpu.wang@ionos.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=linux-mtd@lists.infradead.org \
    --cc=linux-stm32@st-md-mailman.stormreply.com \
    --cc=linux-sunxi@lists.linux.dev \
    --cc=martin.blumenstingl@googlemail.com \
    --cc=matthias.bgg@gmail.com \
    --cc=mcoquelin.stm32@gmail.com \
    --cc=michael@walle.cc \
    --cc=michal.simek@amd.com \
    --cc=miquel.raynal@bootlin.com \
    --cc=nicolas.ferre@microchip.com \
    --cc=paul@crapouillou.net \
    --cc=philmd@linaro.org \
    --cc=pratyush@kernel.org \
    --cc=richard@nod.at \
    --cc=robh@kernel.org \
    --cc=rogerq@kernel.org \
    --cc=samuel@sholland.org \
    --cc=stefan@agner.ch \
    --cc=tudor.ambarus@linaro.org \
    --cc=u.kleine-koenig@pengutronix.de \
    --cc=vigneshr@ti.com \
    --cc=vz@mleia.com \
    --cc=wens@csie.org \
    --cc=yangyingliang@huawei.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.