summaryrefslogtreecommitdiff
path: root/include/linux/mtd
diff options
context:
space:
mode:
authorMiquel Raynal <miquel.raynal@bootlin.com>2020-05-29 13:12:58 +0200
committerMiquel Raynal <miquel.raynal@bootlin.com>2020-06-26 08:35:04 +0200
commit271de009b7c0c1c15f63491a352ab08835462977 (patch)
treef931cdd9c057c1b13b769e50e3b00c94c867383b /include/linux/mtd
parent8e8b2706e15d16443b1ea61a6f994c08ec5b9486 (diff)
mtd: rawnand: Rename the manufacturer structure
It is currently called nand_manufacturer but could actually be called nand_manufacturer_desc, like its instances, so that the former name is left unused for now. Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com> Link: https://lore.kernel.org/linux-mtd/20200529111322.7184-5-miquel.raynal@bootlin.com
Diffstat (limited to 'include/linux/mtd')
-rw-r--r--include/linux/mtd/rawnand.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mtd/rawnand.h b/include/linux/mtd/rawnand.h
index 7f9be95ca8dc..860d3c1020ef 100644
--- a/include/linux/mtd/rawnand.h
+++ b/include/linux/mtd/rawnand.h
@@ -1163,7 +1163,7 @@ struct nand_chip {
void *priv;
struct {
- const struct nand_manufacturer *desc;
+ const struct nand_manufacturer_desc *desc;
void *priv;
} manufacturer;
};