diff options
author | Simon Glass <sjg@chromium.org> | 2016-10-02 17:59:29 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-10-13 14:10:32 -0600 |
commit | df87e6b1b815ae3484ea2aa7c53b90af382eae1b (patch) | |
tree | 63ec3cbdc467ddac4191e150fecc9350dada75c5 /drivers/spi | |
parent | b02e4044ff8ee1f6ac83917a39514172a9b449fb (diff) | |
download | u-boot-imx-df87e6b1b815ae3484ea2aa7c53b90af382eae1b.zip u-boot-imx-df87e6b1b815ae3484ea2aa7c53b90af382eae1b.tar.gz u-boot-imx-df87e6b1b815ae3484ea2aa7c53b90af382eae1b.tar.bz2 |
libfdt: Sync fdt_for_each_subnode() with upstream
The signature for this macro has changed. Bring in the upstream version and
adjust U-Boot's usages to suit.
Signed-off-by: Simon Glass <sjg@chromium.org>
Update to drivers/power/pmic/palmas.c:
Signed-off-by: Keerthy <j-keerthy@ti.com>
Change-Id: I6cc9021339bfe686f9df21d61a1095ca2b3776e8
Diffstat (limited to 'drivers/spi')
-rw-r--r-- | drivers/spi/fsl_qspi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/fsl_qspi.c b/drivers/spi/fsl_qspi.c index 729ded9..4d378c2 100644 --- a/drivers/spi/fsl_qspi.c +++ b/drivers/spi/fsl_qspi.c @@ -1098,7 +1098,7 @@ static int fsl_qspi_ofdata_to_platdata(struct udevice *bus) } /* Count flash numbers */ - fdt_for_each_subnode(blob, subnode, node) + fdt_for_each_subnode(subnode, blob, node) ++flash_num; if (flash_num == 0) { |