Remove the "phandle = <0x..>;" properties from the DT diff between
unpatched base DT and U-Boot augmented DT if DEVICE_TREE_DEBUG=1.
The phandle numbers are only generated by DTC, but not referenced
anywhere in the DT, because the original references are specifically
not replaced by phandle numbers when recent DTC is invoked with the
-I dts -O dts flags . The phandle number are therefore only a noise
in the diff, filter them out.

Signed-off-by: Marek Vasut <[email protected]>
---
Cc: Adriano Cordova <[email protected]>
Cc: Ilias Apalodimas <[email protected]>
Cc: Peter Robinson <[email protected]>
Cc: Sam Edwards <[email protected]>
Cc: Sughosh Ganu <[email protected]>
Cc: Tom Rini <[email protected]>
Cc: [email protected]
---
 scripts/Makefile.lib | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib
index 377a4700b94..7386353e0cc 100644
--- a/scripts/Makefile.lib
+++ b/scripts/Makefile.lib
@@ -437,6 +437,8 @@ cmd_dtc_diff = \
        $(DTC) -s -O dts -o [email protected] -b 0 \
                -i $(dir $<) -i $(u_boot_dtsi_loc) $(DTC_FLAGS) $(dtc-tmp) || \
                (echo "Check $(shell pwd)/$(pre-tmp) for errors" && false); \
+       sed -i '/\<phandle\> = <0x[0-9a-f]\+>;/ d' [email protected]; \
+       sed -i '/\<phandle\> = <0x[0-9a-f]\+>;/ d' [email protected]; \
        (diff -Naru [email protected] [email protected] > [email protected] || true)
 
 dtn-tmp = $(subst $(comma),_,$(dot-target).dtn.tmp)
-- 
2.51.0

Reply via email to