aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/isp116x-hcd.c
diff options
context:
space:
mode:
authorOlav Kongas <ok@artecdesign.ee>2005-08-04 09:48:19 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2005-09-08 19:22:47 -0400
commitd4d62861b5cdb0ecfcae448e4281623284de5d05 (patch)
treed3ae4654ca852122e348db59e48cbd2d7778f285 /drivers/usb/host/isp116x-hcd.c
parentdc5bed091a7a5fe378055c30a2da874f77228b71 (diff)
[PATCH] USB: isp116x-hcd: remove unnecessary ClockNotStop configuration option
Signed-off-by: Olav Kongas <ok@artecdesign.ee> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/host/isp116x-hcd.c')
-rw-r--r--drivers/usb/host/isp116x-hcd.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/usb/host/isp116x-hcd.c b/drivers/usb/host/isp116x-hcd.c
index a7cb134cf125..96aaee509929 100644
--- a/drivers/usb/host/isp116x-hcd.c
+++ b/drivers/usb/host/isp116x-hcd.c
@@ -1569,7 +1569,7 @@ static int isp116x_start(struct usb_hcd *hcd)
1569 if (board->sel15Kres) 1569 if (board->sel15Kres)
1570 val |= HCHWCFG_15KRSEL; 1570 val |= HCHWCFG_15KRSEL;
1571 /* Remote wakeup won't work without working clock */ 1571 /* Remote wakeup won't work without working clock */
1572 if (board->clknotstop || board->remote_wakeup_enable) 1572 if (board->remote_wakeup_enable)
1573 val |= HCHWCFG_CLKNOTSTOP; 1573 val |= HCHWCFG_CLKNOTSTOP;
1574 if (board->oc_enable) 1574 if (board->oc_enable)
1575 val |= HCHWCFG_ANALOG_OC; 1575 val |= HCHWCFG_ANALOG_OC;
@@ -1615,9 +1615,6 @@ static int isp116x_start(struct usb_hcd *hcd)
1615 1615
1616 /* Go operational */ 1616 /* Go operational */
1617 val = HCCONTROL_USB_OPER; 1617 val = HCCONTROL_USB_OPER;
1618 /* Remote wakeup connected - NOT SUPPORTED */
1619 /* if (board->remote_wakeup_connected)
1620 val |= HCCONTROL_RWC; */
1621 if (board->remote_wakeup_enable) 1618 if (board->remote_wakeup_enable)
1622 val |= HCCONTROL_RWE; 1619 val |= HCCONTROL_RWE;
1623 isp116x_write_reg32(isp116x, HCCONTROL, val); 1620 isp116x_write_reg32(isp116x, HCCONTROL, val);