blob: fa6f34a12b4bfa0118958cc11b03aebb92d267ec [file] [log] [blame]
Alan Stern36e56a32006-07-01 22:08:06 -04001/*
2 * drivers/usb/generic.c - generic driver for USB devices (not interfaces)
3 *
4 * (C) Copyright 2005 Greg Kroah-Hartman <gregkh@suse.de>
5 *
6 * based on drivers/usb/usb.c which had the following copyrights:
7 * (C) Copyright Linus Torvalds 1999
8 * (C) Copyright Johannes Erdfelt 1999-2001
9 * (C) Copyright Andreas Gal 1999
10 * (C) Copyright Gregory P. Smith 1999
11 * (C) Copyright Deti Fliegl 1999 (new USB architecture)
12 * (C) Copyright Randy Dunlap 2000
13 * (C) Copyright David Brownell 2000-2004
14 * (C) Copyright Yggdrasil Computing, Inc. 2000
15 * (usb_device_id matching changes by Adam J. Richter)
16 * (C) Copyright Greg Kroah-Hartman 2002-2003
17 *
18 */
19
20#include <linux/config.h>
21#include <linux/usb.h>
22#include "usb.h"
23
Alan Stern8bb54ab2006-07-01 22:08:49 -040024static int generic_probe(struct usb_device *udev)
Alan Stern36e56a32006-07-01 22:08:06 -040025{
26 return 0;
27}
Alan Stern8bb54ab2006-07-01 22:08:49 -040028static void generic_disconnect(struct usb_device *udev)
Alan Stern36e56a32006-07-01 22:08:06 -040029{
Alan Stern36e56a32006-07-01 22:08:06 -040030 /* if this is only an unbind, not a physical disconnect, then
31 * unconfigure the device */
32 if (udev->state == USB_STATE_CONFIGURED)
33 usb_set_configuration(udev, 0);
34
35 /* in case the call failed or the device was suspended */
36 if (udev->state >= USB_STATE_CONFIGURED)
37 usb_disable_device(udev, 0);
Alan Stern36e56a32006-07-01 22:08:06 -040038}
39
Alan Stern8bb54ab2006-07-01 22:08:49 -040040struct usb_device_driver usb_generic_driver = {
Alan Stern36e56a32006-07-01 22:08:06 -040041 .name = "usb",
Alan Stern36e56a32006-07-01 22:08:06 -040042 .probe = generic_probe,
Alan Stern8bb54ab2006-07-01 22:08:49 -040043 .disconnect = generic_disconnect,
Alan Stern36e56a32006-07-01 22:08:06 -040044};