fw_env: rename variables holding env data content
authorRafał Miłecki <rafal@milecki.pl>
Wed, 13 Dec 2023 09:23:44 +0000 (10:23 +0100)
committerTom Rini <trini@konsulko.com>
Fri, 5 Jan 2024 20:41:47 +0000 (15:41 -0500)
commit73b30800f56883a26a24f87acb30d21cd4dd25d4
tree5f5630a71daf051506426ba5674eb6b8b0bdca0e
parentf29c5ca33df4c77b9af2cbfb7ed90bf336613522
fw_env: rename variables holding env data content

Rename "addr0" and "addr1" to "buf0" and "buf1" accordingly. Name "addr"
suggests that variable contains a numeric value being some kind of
address. Name "buf" is de facto a standard name for pointer to allocated
memory for reading data to.

While at it drop redundant checks for NULL before calling free().

Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
tools/env/fw_env.c