[U-Boot] [PATCH] ARMV7:ca9x4_ct_vxp: udelay reference fix

Fixes undefined reference to `__udelay' build failure.
Signed-off-by: Matt Waddel matt.waddel@linaro.org --- board/armltd/vexpress/ca9x4_ct_vxp.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/board/armltd/vexpress/ca9x4_ct_vxp.c b/board/armltd/vexpress/ca9x4_ct_vxp.c index c1c4ea1..ce1be1e 100644 --- a/board/armltd/vexpress/ca9x4_ct_vxp.c +++ b/board/armltd/vexpress/ca9x4_ct_vxp.c @@ -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;

On 29.11.2010 19:09, Matt Waddel wrote:
Fixes undefined reference to `__udelay' build failure.
Signed-off-by: Matt Waddelmatt.waddel@linaro.org
Ah, you were some minutes faster ;) So:
Acked-by: Dirk Behme dirk.behme@googlemail.com
board/armltd/vexpress/ca9x4_ct_vxp.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/board/armltd/vexpress/ca9x4_ct_vxp.c b/board/armltd/vexpress/ca9x4_ct_vxp.c index c1c4ea1..ce1be1e 100644 --- a/board/armltd/vexpress/ca9x4_ct_vxp.c +++ b/board/armltd/vexpress/ca9x4_ct_vxp.c @@ -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;
participants (2)
-
Dirk Behme
-
Matt Waddel