Re: [PATCH] ARC: dts: Remove leading 0x from node unit addresses

2018-06-18 Thread Krzysztof Kozlowski
On 18 June 2018 at 22:07, Joe Perches wrote: > On Mon, 2018-06-18 at 21:16 +0200, Krzysztof Kozlowski wrote: >> Remove leading 0x from all node unit addresses with a sed command: >> >> sed -E -i -e "s/@0x([0-9a-fA-F\.]+)\s?\{/@\L\1 \{/g" >> arch/arc/boot/dts/*.dts* >> >> This fixes DTC warnin

Re: [PATCH] ARC: dts: Remove leading 0x from node unit addresses

2018-06-18 Thread Joe Perches
On Mon, 2018-06-18 at 21:16 +0200, Krzysztof Kozlowski wrote: > Remove leading 0x from all node unit addresses with a sed command: > > sed -E -i -e "s/@0x([0-9a-fA-F\.]+)\s?\{/@\L\1 \{/g" > arch/arc/boot/dts/*.dts* > > This fixes DTC warnings like: > > Warning (unit_address_format): /cp

[PATCH] ARC: dts: Remove leading 0x from node unit addresses

2018-06-18 Thread Krzysztof Kozlowski
Remove leading 0x from all node unit addresses with a sed command: sed -E -i -e "s/@0x([0-9a-fA-F\.]+)\s?\{/@\L\1 \{/g" arch/arc/boot/dts/*.dts* This fixes DTC warnings like: Warning (unit_address_format): /cpu_card/dw-apb-gpio@0x2000: unit name should not have leading "0x" Reported-b