From cb44091fdfa1170f9c0a0a1d3396d6472fbf8911 Mon Sep 17 00:00:00 2001 From: Alexander Holler Date: Thu, 27 Jan 2011 22:50:07 +0100 Subject: USB: Fix device stati for removable and powerctrl (typo) I currently don't know if the error could have other consequences than a wrong output when turning debug on. Signed-off-by: Alexander Holler --- common/usb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/usb.c') diff --git a/common/usb.c b/common/usb.c index 10e23de6a4..aa28de028f 100644 --- a/common/usb.c +++ b/common/usb.c @@ -1220,7 +1220,7 @@ int usb_hub_configure(struct usb_device *dev) hub->desc.DeviceRemovable[i] = descriptor->DeviceRemovable[i]; for (i = 0; i < ((hub->desc.bNbrPorts + 1 + 7)/8); i++) - hub->desc.DeviceRemovable[i] = descriptor->PortPowerCtrlMask[i]; + hub->desc.PortPowerCtrlMask[i] = descriptor->PortPowerCtrlMask[i]; dev->maxchild = descriptor->bNbrPorts; USB_HUB_PRINTF("%d ports detected\n", dev->maxchild); -- cgit v1.2.3