public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Alexander Dahl <ada@thorsis.com>
To: Dario Binacchi <dario.binacchi@amarulasolutions.com>,
	Michael Trimarchi <michael@amarulasolutions.com>
Cc: Balamanikandan Gunasundar
	<balamanikandan.gunasundar@microchip.com>,
	Eugen Hristev <eugen.hristev@collabora.com>,
	u-boot@lists.denx.de
Subject: [PATCH 1/4] mtd: nand: raw: Use macro nand_to_mtd() where appropriate
Date: Thu,  7 Mar 2024 10:10:11 +0100	[thread overview]
Message-ID: <20240307091014.39796-2-ada@thorsis.com> (raw)
In-Reply-To: <20240307091014.39796-1-ada@thorsis.com>

In every other place in this file the macro is used, make it consistent.

Fixes: 9d1806fadc24 ("mtd: nand: Get rid of mtd variable in function calls")
Signed-off-by: Alexander Dahl <ada@thorsis.com>
---
 drivers/mtd/nand/raw/nand_base.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/mtd/nand/raw/nand_base.c b/drivers/mtd/nand/raw/nand_base.c
index c40a0f23d7b..688d17ba3c2 100644
--- a/drivers/mtd/nand/raw/nand_base.c
+++ b/drivers/mtd/nand/raw/nand_base.c
@@ -4118,7 +4118,7 @@ static int nand_get_bits_per_cell(u8 cellinfo)
  */
 void nand_decode_ext_id(struct nand_chip *chip)
 {
-	struct mtd_info *mtd = &chip->mtd;
+	struct mtd_info *mtd = nand_to_mtd(chip);
 	int extid;
 	/* The 3rd id byte holds MLC / multichip data */
 	chip->bits_per_cell = nand_get_bits_per_cell(chip->id.data[2]);
@@ -4185,7 +4185,7 @@ static int nand_manufacturer_init(struct nand_chip *chip)
  */
 static void nand_decode_id(struct nand_chip *chip, struct nand_flash_dev *type)
 {
-	struct mtd_info *mtd = &chip->mtd;
+	struct mtd_info *mtd = nand_to_mtd(chip);
 
 	mtd->erasesize = type->erasesize;
 	mtd->writesize = type->pagesize;
@@ -4265,7 +4265,7 @@ static const struct nand_manufacturer *nand_get_manufacturer_desc(u8 id)
 int nand_detect(struct nand_chip *chip, int *maf_id,
 		int *dev_id, struct nand_flash_dev *type)
 {
-	struct mtd_info *mtd = &chip->mtd;
+	struct mtd_info *mtd = nand_to_mtd(chip);
 	const struct nand_manufacturer *manufacturer_desc;
 	int busw, ret;
 	u8 *id_data = chip->id.data;
-- 
2.39.2


  reply	other threads:[~2024-03-07  9:16 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-07  9:10 [PATCH 0/4] mtd: nand: raw: Collected improvements Alexander Dahl
2024-03-07  9:10 ` Alexander Dahl [this message]
2024-03-07 10:01   ` [PATCH 1/4] mtd: nand: raw: Use macro nand_to_mtd() where appropriate Michael Nazzareno Trimarchi
2024-03-07  9:10 ` [PATCH 2/4] mtd: nand: raw: Port another option flag from Linux Alexander Dahl
2024-03-07 10:02   ` Michael Nazzareno Trimarchi
2024-03-07  9:10 ` [PATCH 3/4] mtd: nand: raw: Fix (most) Kconfig indentation Alexander Dahl
2024-03-07 10:03   ` Michael Nazzareno Trimarchi
2024-03-07  9:10 ` [PATCH 4/4] mtd: nand: raw: atmel: Introduce optional debug commands Alexander Dahl
2024-03-07  9:59   ` Eugen Hristev
2024-03-18  8:09     ` Mihai.Sain
2024-03-18  8:27       ` Eugen Hristev
2024-03-18  9:15         ` Mihai.Sain
2024-03-18 10:27           ` Alexander Dahl
2024-03-18 11:15             ` Mihai.Sain
2024-03-19 11:43               ` Alexander Dahl
2024-03-20  7:35                 ` Mihai.Sain
2024-03-18  8:46       ` Alexander Dahl
2024-03-18  9:07         ` Mihai.Sain
2024-03-18 11:18           ` Alexander Dahl
2024-03-18 11:28             ` Mihai.Sain
2024-03-18 12:06               ` Alexander Dahl
2024-03-18 13:07                 ` Mihai.Sain

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=20240307091014.39796-2-ada@thorsis.com \
    --to=ada@thorsis.com \
    --cc=balamanikandan.gunasundar@microchip.com \
    --cc=dario.binacchi@amarulasolutions.com \
    --cc=eugen.hristev@collabora.com \
    --cc=michael@amarulasolutions.com \
    --cc=u-boot@lists.denx.de \
    /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