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
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
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