diff options
author | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2008-04-14 23:01:50 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-04-17 13:20:14 -0700 |
commit | c0559be371b2a64b1a817088c3308688e2182f93 (patch) | |
tree | 29a1cf26364ab3e96e76cfa817171af1e624430d /common/env_eeprom.c | |
parent | 3dfd4aab929cccddb63d9ea509967861e1333b52 (diff) | |
download | u-boot-imx-c0559be371b2a64b1a817088c3308688e2182f93.zip u-boot-imx-c0559be371b2a64b1a817088c3308688e2182f93.tar.gz u-boot-imx-c0559be371b2a64b1a817088c3308688e2182f93.tar.bz2 |
Change env_get_char from a global function ptr to a function.
This avoids an early global data reference.
Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
Diffstat (limited to 'common/env_eeprom.c')
-rw-r--r-- | common/env_eeprom.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/common/env_eeprom.c b/common/env_eeprom.c index 2adc129..fae87ca 100644 --- a/common/env_eeprom.c +++ b/common/env_eeprom.c @@ -38,7 +38,6 @@ env_t *env_ptr = NULL; char * env_name_spec = "EEPROM"; -extern uchar (*env_get_char)(int); extern uchar env_get_char_memory (int index); |