From: Simon Glass <sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
To: U-Boot Mailing List <u-boot-0aAXYlwwYIKGBzrmiIFOJg@public.gmane.org>
Cc: Simon Glass <sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>,
Beniamino Galvani
<b.galvani-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>,
Marek Vasut <marex-ynQEQJNshbs@public.gmane.org>,
Nikita Kiryanov <nikita-UTxiZqZC01RS1MOuV/RT9w@public.gmane.org>,
Michal Simek
<michal.simek-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>,
York Sun <york.sun-3arQi8VN3Tc@public.gmane.org>,
Andrej Rosano <andrej-6l9oX9VzF44FueaiHvvTSg@public.gmane.org>,
Devicetree Compiler
<devicetree-compiler-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
Heiko Schocher <hs-ynQEQJNshbs@public.gmane.org>,
Albert Aribaud
<albert.u.boot-LhW3hqR2+23R7s880joybQ@public.gmane.org>,
Andreas Dannenberg <dannenberg-l0cyMroinI0@public.gmane.org>,
Minkyu Kang <mk7.kang-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>,
"Robert P. J. Day"
<rpjday-L09J2beyid0N/H6P543EQg@public.gmane.org>,
Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>,
Jagan Teki <jteki-oRp2ZoJdM/RWk0Htik3J/w@public.gmane.org>,
Alexander Graf <agraf-l3A5Bk7waGM@public.gmane.org>,
Przemyslaw Marczak
<p.marczak-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>,
Thomas Abraham
<thomas.ab-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>,
Tom Warren <twarr>
Subject: [PATCH 0/6] libfdt: Sync to upstream
Date: Sun, 2 Oct 2016 17:59:24 -0600 [thread overview]
Message-ID: <1475452771-16230-1-git-send-email-sjg@chromium.org> (raw)
In a few cases the upstream versions of functions first written for U-Boot
have landed in a slightly different form.
This includes a few patches to fix these as well as various minor changes to
reduce the delta.
David Gibson (1):
libfdt: Fix undefined behaviour in fdt_offset_ptr()
Hannes Schmelzer (1):
cmd/fdt: add possibilty to have 'extrasize' on fdt resize
Simon Glass (4):
libfdt: Sync up with upstream
libfdt: Bring in upstream stringlist functions
libfdt: Sync fdt_for_each_subnode() with upstream
libfdt: Drop inlining of fdt_path_offset()
arch/arm/mach-tegra/xusb-padctl-common.c | 18 +--
arch/arm/mach-uniphier/board_late_init.c | 5 +-
arch/x86/cpu/irq.c | 5 +-
board/compulab/cm_fx6/cm_fx6.c | 2 +-
cmd/fdt.c | 9 +-
common/fdt_support.c | 3 +-
common/image-fdt.c | 2 +-
common/image-fit.c | 21 ++--
common/image-sig.c | 8 +-
common/image.c | 19 ++--
drivers/clk/clk-uclass.c | 6 +-
drivers/core/device.c | 2 +-
drivers/gpio/dwapb_gpio.c | 3 +-
drivers/i2c/mxc_i2c.c | 2 +-
drivers/mailbox/mailbox-uclass.c | 6 +-
drivers/net/cpsw.c | 2 +-
drivers/net/keystone_net.c | 4 +-
drivers/net/mvpp2.c | 2 +-
drivers/net/sun8i_emac.c | 5 +-
drivers/pci/pci_tegra.c | 2 +-
drivers/phy/marvell/comphy_core.c | 2 +-
drivers/pinctrl/exynos/pinctrl-exynos.c | 9 +-
drivers/pinctrl/meson/pinctrl-meson.c | 4 +-
drivers/pinctrl/pinctrl-generic.c | 10 +-
drivers/pinctrl/pinctrl-uclass.c | 2 +-
drivers/reset/reset-uclass.c | 6 +-
drivers/spi/fsl_qspi.c | 2 +-
drivers/video/sunxi_display.c | 2 +-
include/fdt_support.h | 10 +-
include/libfdt.h | 187 ++++++++++++++++++-------------
lib/fdtdec.c | 4 +-
lib/libfdt/fdt.c | 13 ++-
lib/libfdt/fdt_overlay.c | 8 +-
lib/libfdt/fdt_ro.c | 119 ++++++++++++--------
lib/libfdt/fdt_rw.c | 4 +-
lib/libfdt/fdt_wip.c | 6 +-
test/overlay/cmd_ut_overlay.c | 5 +-
37 files changed, 298 insertions(+), 221 deletions(-)
--
2.8.0.rc3.226.g39d4020
next reply other threads:[~2016-10-02 23:59 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-02 23:59 Simon Glass [this message]
[not found] ` <1475452771-16230-1-git-send-email-sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2016-10-02 23:59 ` [PATCH 2/6] libfdt: Fix undefined behaviour in fdt_offset_ptr() Simon Glass
2016-10-02 23:59 ` [PATCH 3/6] libfdt: Sync up with upstream Simon Glass
2016-10-02 23:59 ` [PATCH 4/6] libfdt: Bring in upstream stringlist functions Simon Glass
2016-10-02 23:59 ` [PATCH 5/6] libfdt: Sync fdt_for_each_subnode() with upstream Simon Glass
2016-10-02 23:59 ` [PATCH 6/6] libfdt: Drop inlining of fdt_path_offset() Simon Glass
2016-10-06 13:53 ` [PATCH 0/6] libfdt: Sync to upstream Maxime Ripard
2016-10-06 14:36 ` Simon Glass
[not found] ` <CAPnjgZ07Ab8fX2ZNUikjKxenzvswdkzdn1-8uiTDqNp3Um2sQw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-10-06 21:06 ` Maxime Ripard
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1475452771-16230-1-git-send-email-sjg@chromium.org \
--to=sjg-f7+t8e8rja9g9huczpvpmw@public.gmane.org \
--cc=agraf-l3A5Bk7waGM@public.gmane.org \
--cc=albert.u.boot-LhW3hqR2+23R7s880joybQ@public.gmane.org \
--cc=andrej-6l9oX9VzF44FueaiHvvTSg@public.gmane.org \
--cc=b.galvani-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=dannenberg-l0cyMroinI0@public.gmane.org \
--cc=devicetree-compiler-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=hs-ynQEQJNshbs@public.gmane.org \
--cc=jteki-oRp2ZoJdM/RWk0Htik3J/w@public.gmane.org \
--cc=marex-ynQEQJNshbs@public.gmane.org \
--cc=michal.simek-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org \
--cc=mk7.kang-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org \
--cc=nikita-UTxiZqZC01RS1MOuV/RT9w@public.gmane.org \
--cc=p.marczak-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org \
--cc=rpjday-L09J2beyid0N/H6P543EQg@public.gmane.org \
--cc=swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org \
--cc=thomas.ab-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org \
--cc=treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org \
--cc=u-boot-0aAXYlwwYIKGBzrmiIFOJg@public.gmane.org \
--cc=york.sun-3arQi8VN3Tc@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).