diff options
Diffstat (limited to 'common/env_dataflash.c')
-rw-r--r-- | common/env_dataflash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/env_dataflash.c b/common/env_dataflash.c index 8834da032bd..93fff29b05a 100644 --- a/common/env_dataflash.c +++ b/common/env_dataflash.c @@ -26,6 +26,8 @@ #include <linux/stddef.h> #include <dataflash.h> +DECLARE_GLOBAL_DATA_PTR; + env_t *env_ptr = NULL; char * env_name_spec = "dataflash"; @@ -68,8 +70,6 @@ int i; */ int env_init(void) { - DECLARE_GLOBAL_DATA_PTR; - ulong crc, len, new; unsigned off; uchar buf[64]; |