diff options
author | Alan Stern <stern@rowland.harvard.edu> | 2006-08-30 11:32:52 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-09-27 14:58:56 -0400 |
commit | 1720058343fa43a1a25bfad9e62ea06e7e9743b6 (patch) | |
tree | 8225039836451d9784f729cf5136d5ad0443658c /include/linux/usb.h | |
parent | dd990f16a39d4e615c0b70a0ab50b79b32bfb16d (diff) |
usbcore: trim down usb_bus structure
As part of the ongoing program to flatten out the HCD bus-glue layer,
this patch (as771b) eliminates the hcpriv, release, and kref fields
from struct usb_bus. hcpriv and release were not being used for
anything worthwhile, and kref has been moved into the enclosing
usb_hcd structure.
Along with those changes, the patch gets rid of usb_bus_get and
usb_bus_put, replacing them with usb_get_hcd and usb_put_hcd.
The one interesting aspect is that the dev_set_drvdata call was
removed from usb_put_hcd, where it clearly doesn't belong. This means
the driver private data won't get reset to NULL. It shouldn't cause
any problems, since the private data is undefined when no driver is
bound.
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/usb.h')
-rw-r--r-- | include/linux/usb.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/usb.h b/include/linux/usb.h index 09661759621f..c66303285a45 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h | |||
@@ -280,7 +280,6 @@ struct usb_bus { | |||
280 | struct usb_devmap devmap; /* device address allocation map */ | 280 | struct usb_devmap devmap; /* device address allocation map */ |
281 | struct usb_device *root_hub; /* Root hub */ | 281 | struct usb_device *root_hub; /* Root hub */ |
282 | struct list_head bus_list; /* list of busses */ | 282 | struct list_head bus_list; /* list of busses */ |
283 | void *hcpriv; /* Host Controller private data */ | ||
284 | 283 | ||
285 | int bandwidth_allocated; /* on this bus: how much of the time | 284 | int bandwidth_allocated; /* on this bus: how much of the time |
286 | * reserved for periodic (intr/iso) | 285 | * reserved for periodic (intr/iso) |
@@ -295,8 +294,6 @@ struct usb_bus { | |||
295 | struct dentry *usbfs_dentry; /* usbfs dentry entry for the bus */ | 294 | struct dentry *usbfs_dentry; /* usbfs dentry entry for the bus */ |
296 | 295 | ||
297 | struct class_device *class_dev; /* class device for this bus */ | 296 | struct class_device *class_dev; /* class device for this bus */ |
298 | struct kref kref; /* reference counting for this bus */ | ||
299 | void (*release)(struct usb_bus *bus); | ||
300 | 297 | ||
301 | #if defined(CONFIG_USB_MON) | 298 | #if defined(CONFIG_USB_MON) |
302 | struct mon_bus *mon_bus; /* non-null when associated */ | 299 | struct mon_bus *mon_bus; /* non-null when associated */ |