diff options
author | Samuel Holland | 2023-01-22 16:06:34 -0600 |
---|---|---|
committer | Andre Przywara | 2023-04-28 01:06:57 +0100 |
commit | 1eb09081f61fd69aec92b971f115cd8cc98789c3 (patch) | |
tree | 18a3777d936643e37c68aee55e3295683e54e550 /lib/fdtdec.c | |
parent | b05bf9415705faffc2a45c2a5f5385f119f9a8b1 (diff) |
mtd: nand: sunxi: Convert from fdtdec to ofnode
As a first step toward converting this driver to the driver model, use
the ofnode abstraction to replace direct references to the FDT blob.
Using ofnode_read_u32_index removes an extra pair of loops and makes the
allwinner,rb property optional, matching the devicetree binding.
Signed-off-by: Samuel Holland <samuel@sholland.org>
Acked-by: Andre Przywara <andre.przywara@arm.com>
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Diffstat (limited to 'lib/fdtdec.c')
-rw-r--r-- | lib/fdtdec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/fdtdec.c b/lib/fdtdec.c index 0827e16859f..ea09ddf1d12 100644 --- a/lib/fdtdec.c +++ b/lib/fdtdec.c @@ -65,7 +65,6 @@ static const char * const compat_names[COMPAT_COUNT] = { COMPAT(INTEL_BAYTRAIL_FSP, "intel,baytrail-fsp"), COMPAT(INTEL_BAYTRAIL_FSP_MDP, "intel,baytrail-fsp-mdp"), COMPAT(INTEL_IVYBRIDGE_FSP, "intel,ivybridge-fsp"), - COMPAT(COMPAT_SUNXI_NAND, "allwinner,sun4i-a10-nand"), COMPAT(ALTERA_SOCFPGA_CLK, "altr,clk-mgr"), COMPAT(ALTERA_SOCFPGA_PINCTRL_SINGLE, "pinctrl-single"), COMPAT(ALTERA_SOCFPGA_H2F_BRG, "altr,socfpga-hps2fpga-bridge"), |