Commit 12161d56 authored by Alan Stern's avatar Alan Stern Committed by Greg Kroah-Hartman

[PATCH] USB: Update root-hub code for the ohci-lh7a404 driver

On Wed, 9 Jun 2004, David Brownell wrote:

> Needs an update for ohci-lh7a404.c too ...

I didn't even know this driver existed!  Where did usb/host/* come from?
Signed-off-by: default avatarAlan Stern <stern@rowland.harvard.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
parent 72ab0f27
...@@ -191,7 +191,6 @@ int usb_hcd_lh7a404_probe (const struct hc_driver *driver, ...@@ -191,7 +191,6 @@ int usb_hcd_lh7a404_probe (const struct hc_driver *driver,
*/ */
void usb_hcd_lh7a404_remove (struct usb_hcd *hcd, struct platform_device *dev) void usb_hcd_lh7a404_remove (struct usb_hcd *hcd, struct platform_device *dev)
{ {
struct usb_device *hub;
void *base; void *base;
pr_debug ("remove: %s, state %x", hcd->self.bus_name, hcd->state); pr_debug ("remove: %s, state %x", hcd->self.bus_name, hcd->state);
...@@ -199,11 +198,10 @@ void usb_hcd_lh7a404_remove (struct usb_hcd *hcd, struct platform_device *dev) ...@@ -199,11 +198,10 @@ void usb_hcd_lh7a404_remove (struct usb_hcd *hcd, struct platform_device *dev)
if (in_interrupt ()) if (in_interrupt ())
BUG (); BUG ();
hub = hcd->self.root_hub;
hcd->state = USB_STATE_QUIESCING; hcd->state = USB_STATE_QUIESCING;
pr_debug ("%s: roothub graceful disconnect", hcd->self.bus_name); pr_debug ("%s: roothub graceful disconnect", hcd->self.bus_name);
usb_disconnect (&hub); usb_disconnect (&hcd->self.root_hub);
hcd->driver->stop (hcd); hcd->driver->stop (hcd);
hcd->state = USB_STATE_HALT; hcd->state = USB_STATE_HALT;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment