summaryrefslogtreecommitdiff
path: root/arch/mips/include/asm/u-boot-mips.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/include/asm/u-boot-mips.h')
-rw-r--r--arch/mips/include/asm/u-boot-mips.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/include/asm/u-boot-mips.h b/arch/mips/include/asm/u-boot-mips.h
index a483166a9c..e77636eaaf 100644
--- a/arch/mips/include/asm/u-boot-mips.h
+++ b/arch/mips/include/asm/u-boot-mips.h
@@ -7,7 +7,7 @@
static inline unsigned long bss_start(void)
{
- extern ulong __bss_start;
+ extern char __bss_start[];
return (unsigned long) &__bss_start;
}
@@ -19,7 +19,7 @@ static inline unsigned long bss_end(void)
static inline unsigned long image_copy_end(void)
{
- extern ulong __image_copy_end;
+ extern char __image_copy_end[];
return (unsigned long) &__image_copy_end;
}