mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 21:21:37 +00:00
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: Dirk Behme <dirk.behme@googlemail.com>
This commit is contained in:
parent
9d37cf310a
commit
44b0a386bc
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue