From: 黄涛 Date: Mon, 1 Aug 2011 03:26:42 +0000 (+0800) Subject: dwc_otg_hcd: fix for v2.6.36 X-Git-Tag: firefly_0821_release~9794 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=894ecb4e4d8c1918ef37b37272fdc387f4c176ff;p=firefly-linux-kernel-4.4.55.git dwc_otg_hcd: fix for v2.6.36 --- diff --git a/drivers/usb/dwc_otg/dwc_otg_hcd.c b/drivers/usb/dwc_otg/dwc_otg_hcd.c index 85752070ca36..044987afb9ed 100755 --- a/drivers/usb/dwc_otg/dwc_otg_hcd.c +++ b/drivers/usb/dwc_otg/dwc_otg_hcd.c @@ -2441,10 +2441,10 @@ int dwc_otg_hcd_hub_control(struct usb_hcd *_hcd, port_status |= (1 << USB_PORT_FEAT_POWER); if (hprt0.b.prtspd == DWC_HPRT0_PRTSPD_HIGH_SPEED) - port_status |= (1 << USB_PORT_FEAT_HIGHSPEED); + port_status |= USB_PORT_STAT_HIGH_SPEED; else if (hprt0.b.prtspd == DWC_HPRT0_PRTSPD_LOW_SPEED) - port_status |= (1 << USB_PORT_FEAT_LOWSPEED); + port_status |= USB_PORT_STAT_LOW_SPEED; if (hprt0.b.prttstctl) port_status |= (1 << USB_PORT_FEAT_TEST);