diff options
author | Michael Trimarchi <trimarchi@gandalf.sssup.it> | 2008-11-28 13:19:19 +0100 |
---|---|---|
committer | Remy Bohmer <linux@bohmer.net> | 2009-01-28 19:57:27 +0100 |
commit | 3e126484df7868e341545cce740b24b62b0cd3b7 (patch) | |
tree | a318e5fa05872d743737a9e1fc7756832d989376 /common/usb.c | |
parent | a0cb3fc31e58996a1c5732715ac04159d4d284fd (diff) | |
download | u-boot-imx-3e126484df7868e341545cce740b24b62b0cd3b7.zip u-boot-imx-3e126484df7868e341545cce740b24b62b0cd3b7.tar.gz u-boot-imx-3e126484df7868e341545cce740b24b62b0cd3b7.tar.bz2 |
Prepare USB layer for ehci
Prepare USB layer for ehci support
Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
Signed-off-by: Remy Böhmer <linux@bohmer.net>
Diffstat (limited to 'common/usb.c')
-rw-r--r-- | common/usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/usb.c b/common/usb.c index ee18152..3138452 100644 --- a/common/usb.c +++ b/common/usb.c @@ -1136,7 +1136,7 @@ void usb_hub_port_connect_change(struct usb_device *dev, int port) /* Allocate a new device struct for it */ usb = usb_alloc_new_device(); - usb->slow = (portstatus & USB_PORT_STAT_LOW_SPEED) ? 1 : 0; + usb->speed = (portstatus & USB_PORT_STAT_LOW_SPEED) ? 1 : 0; dev->children[port] = usb; usb->parent = dev; |