commit | 98b5755fb0484ac575b66784865bde2b30ea1d87 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Thu Aug 03 12:22:04 2017 -0600 |
committer | Tom Rini <trini@konsulko.com> | Tue Aug 15 20:50:28 2017 -0400 |
tree | a193900623bfc951c11239daf3409be84622a79c | |
parent | ac358beb85362fb2fac47aaec40a7e1bca49656c [diff] |
env: Drop unused env_ptr variables This variable is declared as a global in most environment location drivers. But it is not used outside the drivers and most of the declarations are unnecessary. Also some drivers call free() on env_ptr which seems wrong since it is not in the heap. Drop the variable where possible, and all calls to free(). Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>