diff options
author | Igor Grinberg <grinberg@compulab.co.il> | 2012-09-23 04:39:16 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-09-26 11:08:32 -0700 |
commit | 3bb89e5bd5c0d3a12129b01fbb706a18ee56557e (patch) | |
tree | cca7d9817b7f885f1d445e473b96325811d2b8b3 /common/env_fat.c | |
parent | 2d1d65838eacd314b989701bd2f9e2b657bbf62b (diff) | |
download | u-boot-imx-3bb89e5bd5c0d3a12129b01fbb706a18ee56557e.zip u-boot-imx-3bb89e5bd5c0d3a12129b01fbb706a18ee56557e.tar.gz u-boot-imx-3bb89e5bd5c0d3a12129b01fbb706a18ee56557e.tar.bz2 |
env: remove duplicated env_get_char_spec()
env_fat and env_remote have an implementation of env_get_char_spec()
function that is not different than the default.
Remove the duplicated code.
Signed-off-by: Igor Grinberg <grinberg@compulab.co.il>
Diffstat (limited to 'common/env_fat.c')
-rw-r--r-- | common/env_fat.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/common/env_fat.c b/common/env_fat.c index bad92aa..ca76967 100644 --- a/common/env_fat.c +++ b/common/env_fat.c @@ -40,11 +40,6 @@ env_t *env_ptr; DECLARE_GLOBAL_DATA_PTR; -uchar env_get_char_spec(int index) -{ - return *((uchar *)(gd->env_addr + index)); -} - int env_init(void) { /* use default */ |