Re: [PATCH v3] cmd: fdt: Use env_set_hex() for "get addr" and "get size"

2023-04-02 Thread Simon Glass
On Sat, 11 Mar 2023 at 09:29, Marek Vasut wrote: > > The 'fdt get addr' and 'env get size' is always assumed to be hex > value, drop the prefix, and outright switch to env_set_hex(). Since > this might break existing users who depend on the existing behavior > with 0x prefix, this is a separate

Re: [PATCH v3] cmd: fdt: Use env_set_hex() for "get addr" and "get size"

2023-03-15 Thread Simon Glass
On Sat, 11 Mar 2023 at 09:29, Marek Vasut wrote: > > The 'fdt get addr' and 'env get size' is always assumed to be hex > value, drop the prefix, and outright switch to env_set_hex(). Since > this might break existing users who depend on the existing behavior > with 0x prefix, this is a separate

[PATCH v3] cmd: fdt: Use env_set_hex() for "get addr" and "get size"

2023-03-11 Thread Marek Vasut
The 'fdt get addr' and 'env get size' is always assumed to be hex value, drop the prefix, and outright switch to env_set_hex(). Since this might break existing users who depend on the existing behavior with 0x prefix, this is a separate patch. Revert if this breaks anything. Signed-off-by: Marek