diff options
author | Simon Glass <sjg@chromium.org> | 2019-08-01 09:46:59 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-11 16:43:41 -0400 |
commit | 1f3db0c135fcaf40ff88bdcd058b56bc7e1f58f3 (patch) | |
tree | 10b86af0c2f545d297ae0f7a93fee6c96ed3b68e | |
parent | 4e9ce8a65fe4510664822a2de4b0d2cf61859b6c (diff) |
env: Drop env_crc_update()
This function is not defined or used in U-Boot. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
-rw-r--r-- | include/environment.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/environment.h b/include/environment.h index c740d5a216..27c0fee65f 100644 --- a/include/environment.h +++ b/include/environment.h @@ -265,9 +265,6 @@ struct env_driver { extern struct hsearch_data env_htab; -/* Function that updates CRC of the enironment */ -void env_crc_update(void); - /* Look up the variable from the default environment */ char *env_get_default(const char *name); |