diff options
author | Alan Stern <stern@rowland.harvard.edu> | 2008-07-28 10:39:28 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-08-13 17:32:49 -0700 |
commit | f4f4d58734916e816d4b4a7cf61b3fc22ce02683 (patch) | |
tree | 72a97145f15bc4284a9b77f5416cf79f90466423 /include | |
parent | a00c3cadc2bf50b3c925acdb3d0e5789b1650498 (diff) | |
download | linux-3.10-f4f4d58734916e816d4b4a7cf61b3fc22ce02683.tar.gz linux-3.10-f4f4d58734916e816d4b4a7cf61b3fc22ce02683.tar.bz2 linux-3.10-f4f4d58734916e816d4b4a7cf61b3fc22ce02683.zip |
USB: add missing kerneldoc line for "needs_binding"
This patch (as1117) adds a kerneldoc line for the "needs_binding"
field in struct usb_interface. It was accidentally omitted when the
field was added.
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/usb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/usb.h b/include/linux/usb.h index 5811c5da69f..0924cd9c30f 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h @@ -110,6 +110,8 @@ enum usb_interface_condition { * @sysfs_files_created: sysfs attributes exist * @needs_remote_wakeup: flag set when the driver requires remote-wakeup * capability during autosuspend. + * @needs_binding: flag set when the driver should be re-probed or unbound + * following a reset or suspend operation it doesn't support. * @dev: driver model's view of this device * @usb_dev: if an interface is bound to the USB major, this will point * to the sysfs representation for that device. |