diff options
| author | Anatolij Gustschin <agust@denx.de> | 2011-10-12 02:31:39 +0000 |
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-10-22 01:16:08 +0200 |
| commit | c4c9fbebae6a62d538817d0ccee698adaafc5d66 (patch) | |
| tree | 91e9e2b82568b32bf3135bdc25d0a852f6c31095 /arch/powerpc/cpu/ppc4xx/usb_ohci.c | |
| parent | 712fbcf384b7fbe6118325f21dad98150b24f13b (diff) | |
| download | olio-uboot-2014.01-c4c9fbebae6a62d538817d0ccee698adaafc5d66.tar.xz olio-uboot-2014.01-c4c9fbebae6a62d538817d0ccee698adaafc5d66.zip | |
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 'arch/powerpc/cpu/ppc4xx/usb_ohci.c')
| -rw-r--r-- | arch/powerpc/cpu/ppc4xx/usb_ohci.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/powerpc/cpu/ppc4xx/usb_ohci.c b/arch/powerpc/cpu/ppc4xx/usb_ohci.c index a9edacd33..fe091e3fa 100644 --- a/arch/powerpc/cpu/ppc4xx/usb_ohci.c +++ b/arch/powerpc/cpu/ppc4xx/usb_ohci.c @@ -1462,7 +1462,6 @@ static int hc_start (ohci_t * ohci) writel (RH_HS_LPSC, &ohci->regs->roothub.status); #endif /* OHCI_USE_NPS */ -#define mdelay(n) ({unsigned long msec=(n); while (msec--) udelay(1000);}) /* POTPGT delay is bits 24-31, in 2 ms units. */ mdelay ((roothub_a (ohci) >> 23) & 0x1fe); |