diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2006-03-11 23:07:09 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-03-11 23:07:09 +0100 |
commit | d2ed2f661b6f74b68105d27a399801bdef287ef5 (patch) | |
tree | 73cfc86cd9b530b5660d933a824dd9c985273ef1 /cpu/arm920t/s3c24x0 | |
parent | 8de7ed3abe2b972fd3cc2eda3953fa2c0b554e3e (diff) | |
download | u-boot-imx-d2ed2f661b6f74b68105d27a399801bdef287ef5.zip u-boot-imx-d2ed2f661b6f74b68105d27a399801bdef287ef5.tar.gz u-boot-imx-d2ed2f661b6f74b68105d27a399801bdef287ef5.tar.bz2 |
More GCC 4.x woes
Diffstat (limited to 'cpu/arm920t/s3c24x0')
-rw-r--r-- | cpu/arm920t/s3c24x0/usb_ohci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpu/arm920t/s3c24x0/usb_ohci.c b/cpu/arm920t/s3c24x0/usb_ohci.c index b4cc744..869ca79 100644 --- a/cpu/arm920t/s3c24x0/usb_ohci.c +++ b/cpu/arm920t/s3c24x0/usb_ohci.c @@ -1647,7 +1647,8 @@ int usb_lowlevel_init(void) } /* FIXME this is a second HC reset; why?? */ - writel (gohci.hc_control = OHCI_USB_RESET, &gohci.regs->control); + gohci.hc_control = OHCI_USB_RESET; + writel (gohci.hc_control, &gohci.regs->control); wait_ms (10); if (hc_start (&gohci) < 0) { |