Skip to content
Snippets Groups Projects
Commit 44b0a386 authored by Dirk Behme's avatar Dirk Behme Committed by Wolfgang Denk
Browse files

ARMV7: Vexpress: Fix build error


Fix ca9x4_ct_vxp build error

Configuring for ca9x4_ct_vxp board...
board/armltd/vexpress/libvexpress.o: In function `udelay':
u-boot.git/board/armltd/vexpress/ca9x4_ct_vxp.c:161: multiple
definition of `udelay'
lib/libgeneric.o:u-boot.git/lib/time.c:34: first defined here

lib/libgeneric.o: In function `udelay':

zlib.c:(.text+0x1ee8): undefined reference to `__udelay'

Signed-of-by: default avatarDirk Behme <dirk.behme@googlemail.com>
parent 9d37cf31
No related branches found
No related tags found
No related merge requests found
......@@ -157,7 +157,7 @@ void reset_cpu(ulong addr)
* Delay x useconds AND perserve advance timstamp value
* assumes timer is ticking at 1 msec
*/
void udelay(ulong usec)
void __udelay(ulong usec)
{
ulong tmo, tmp;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment