env: sf: remove the static env_flash variable
authorPatrick Delaunay <patrick.delaunay@foss.st.com>
Wed, 24 Feb 2021 10:52:36 +0000 (11:52 +0100)
committerTom Rini <trini@konsulko.com>
Fri, 16 Apr 2021 21:33:33 +0000 (17:33 -0400)
commitecf154423258cb4f0d7ee1ff29d26b0f69f67ac4
tree4277ef551c64391e92d1a57410a09dda59d7a508
parentc2d00364c1d638eaa85d5f1384170f610b3c4beb
env: sf: remove the static env_flash variable

As the the SPI flash is probed and is released in each ENV sf function
the env_flash no more need to be static.

This patch move this device handle as local variable of each function and
simplify the associated code (env_flash is never == NULL when
setup_flash_device is called).

Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
env/sf.c