summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-07-12 11:53:09 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2007-07-12 11:53:09 +0200
commita5b58941f738e3a62c19bec920769db1b073bcb3 (patch)
treef3f6bcb4bd41c96aebd7d38b9dd6273f4c506d98
parent3b4647f772de5a637c6700fa6938f6a0db45dbcb (diff)
downloadbarebox-a5b58941f738e3a62c19bec920769db1b073bcb3.tar.gz
barebox-a5b58941f738e3a62c19bec920769db1b073bcb3.tar.xz
move variable declarations out of ifdef
-rw-r--r--include/reloc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/reloc.h b/include/reloc.h
index 3fbb57d5b1..df6500de0d 100644
--- a/include/reloc.h
+++ b/include/reloc.h
@@ -1,10 +1,10 @@
#ifndef __RELOC_H
#define __RELOC_H
-#ifdef CONFIG_HAS_EARLY_INIT
-
extern unsigned long _u_boot_start, _bss_start, _bss_end;
+#ifdef CONFIG_HAS_EARLY_INIT
+
extern ulong __early_init_data_begin, __early_init_data_end;
extern ulong __early_init_data_size;