Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1280771 > unrolled thread

[PATCH v2 10/25] mtd: nand: add nand_to_mtd() helper

Started byBoris Brezillon <boris.brezillon@free-electrons.com>
First post2015-12-01 12:10 +0100
Last post2015-12-01 12:10 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH v2 10/25] mtd: nand: add nand_to_mtd() helper Boris Brezillon <boris.brezillon@free-electrons.com> - 2015-12-01 12:10 +0100

#1280771 — [PATCH v2 10/25] mtd: nand: add nand_to_mtd() helper

FromBoris Brezillon <boris.brezillon@free-electrons.com>
Date2015-12-01 12:10 +0100
Subject[PATCH v2 10/25] mtd: nand: add nand_to_mtd() helper
Message-ID<qAQYP-nS-45@gated-at.bofh.it>
Add a new helper to retrieve the MTD device attached to a NAND chip.

Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
---
 include/linux/mtd/nand.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/include/linux/mtd/nand.h b/include/linux/mtd/nand.h
index c4e39ff..8ec071e 100644
--- a/include/linux/mtd/nand.h
+++ b/include/linux/mtd/nand.h
@@ -737,6 +737,11 @@ static inline struct nand_chip *mtd_to_nand(struct mtd_info *mtd)
 	return mtd->priv;
 }
 
+static inline struct mtd_info *nand_to_mtd(struct nand_chip *chip)
+{
+	return &chip->mtd;
+}
+
 /*
  * NAND Flash Manufacturer ID Codes
  */
-- 
2.1.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web