Messages in this thread Patch in this message |  | | | Date | Tue, 8 Oct 2002 17:57:53 -0700 (PDT) | | From | Patrick Mochel <> | | Subject | Re: [bk/patch] driver model update: device_unregister() |
| |
ChangeSet@1.601, 2002-10-08 17:32:56-07:00, mochel@osdl.org USB: call device_unregister() instead of put_device() when removing devices.
diff -Nru a/drivers/usb/core/usb.c b/drivers/usb/core/usb.c --- a/drivers/usb/core/usb.c Tue Oct 8 17:55:15 2002 +++ b/drivers/usb/core/usb.c Tue Oct 8 17:55:15 2002 @@ -797,7 +797,7 @@ struct usb_interface *interface = &dev->actconfig->interface[i]; /* remove this interface */ - put_device(&interface->dev); + device_unregister(&interface->dev); } } @@ -805,7 +805,7 @@ if (dev->devnum > 0) { clear_bit(dev->devnum, dev->bus->devmap.devicemap); usbfs_remove_device(dev); - put_device(&dev->dev); + device_unregister(&dev->dev); } /* Decrement the reference count, it'll auto free everything when */ - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |