diff options
author | Anatolij Gustschin | 2011-10-12 02:31:39 +0000 |
---|---|---|
committer | Wolfgang Denk | 2011-10-22 01:16:08 +0200 |
commit | c4c9fbebae6a62d538817d0ccee698adaafc5d66 (patch) | |
tree | 91e9e2b82568b32bf3135bdc25d0a852f6c31095 /board/karo | |
parent | 712fbcf384b7fbe6118325f21dad98150b24f13b (diff) |
consolidate mdelay by providing a common function for all users
There are several mdelay() definitions in the driver and
board code. Remove them all and provide a common mdelay()
in lib/time.c.
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Acked-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'board/karo')
-rw-r--r-- | board/karo/tx25/tx25.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/board/karo/tx25/tx25.c b/board/karo/tx25/tx25.c index 307ffd0cbe5..ec83f997cc6 100644 --- a/board/karo/tx25/tx25.c +++ b/board/karo/tx25/tx25.c @@ -31,12 +31,6 @@ #include <asm/gpio.h> #include <asm/arch/sys_proto.h> -static void mdelay(int n) -{ - while (n-- > 0) - udelay(1000); -} - DECLARE_GLOBAL_DATA_PTR; #ifdef CONFIG_FEC_MXC |