]> git.baikalelectronics.ru Git - uboot.git/commit
mtd: nand: raw: convert nand_dt_init() to ofnode_xx() interface
authorPatrice Chotard <patrice.chotard@foss.st.com>
Mon, 13 Sep 2021 14:25:53 +0000 (16:25 +0200)
committerTom Rini <trini@konsulko.com>
Tue, 28 Sep 2021 16:03:21 +0000 (12:03 -0400)
commitf7f14fc987cbabdc37f54aaa7676cfea5c59a154
tree5c7c45910206baab0f2d6fa4c16dcc013fc3985a
parent198414718ec8bf595a394787c35216ba6a2fd6b9
mtd: nand: raw: convert nand_dt_init() to ofnode_xx() interface

nand_dt_init() is still using fdtdec_xx() interface.
If OF_LIVE flag is enabled, dt property can't be get anymore.
Updating all fdtdec_xx() interface to ofnode_xx() to solve this issue.

For doing this, node parameter type must be ofnode.

First idea was to convert "node" parameter to ofnode type inside
nand_dt_init() using offset_to_ofnode(node). But offset_to_ofnode()
is not bijective, in case OF_LIVE flag is enabled, it performs an assert().

So, this leads to update nand_chip struct flash_node field from int to
ofnode and to update all nand_dt_init() callers.

Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
drivers/mtd/nand/raw/denali.c
drivers/mtd/nand/raw/mxs_nand.c
drivers/mtd/nand/raw/nand_base.c
drivers/mtd/nand/raw/stm32_fmc2_nand.c
drivers/mtd/nand/raw/sunxi_nand.c
include/linux/mtd/rawnand.h