diff options
| author | Mike Lockwood <lockwood@android.com> | 2011-01-07 08:40:54 -0800 |
|---|---|---|
| committer | Android Git Automerger <android-git-automerger@android.com> | 2011-01-07 08:40:54 -0800 |
| commit | d548bfd1ea8ed8fe29d6a659623adf5fc8f189e1 (patch) | |
| tree | a0fdd1a0dc6cfe68b1f1e6f51f2f2bdd8e0f5f2b | |
| parent | ca6fe5fd794c482efd97794a806dff84f5ec683f (diff) | |
| parent | be1def8d43d75e280cdd75d432ddcadeaff580b1 (diff) | |
| download | system_core-d548bfd1ea8ed8fe29d6a659623adf5fc8f189e1.tar.gz system_core-d548bfd1ea8ed8fe29d6a659623adf5fc8f189e1.tar.bz2 system_core-d548bfd1ea8ed8fe29d6a659623adf5fc8f189e1.zip | |
am be1def8d: libusbhost: Tweak comments.
* commit 'be1def8d43d75e280cdd75d432ddcadeaff580b1':
libusbhost: Tweak comments.
| -rw-r--r-- | include/usbhost/usbhost.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/include/usbhost/usbhost.h b/include/usbhost/usbhost.h index 3deb1824..7ef7aceb 100644 --- a/include/usbhost/usbhost.h +++ b/include/usbhost/usbhost.h @@ -92,14 +92,10 @@ struct usb_device *usb_device_open(const char *dev_name); /* Releases all resources associated with the USB device */ void usb_device_close(struct usb_device *device); -/* Creates a usb_device object for already open USB device. - * This is intended to facilitate sharing USB devices across address spaces. - */ +/* Creates a usb_device object for already open USB device */ struct usb_device *usb_device_new(const char *dev_name, int fd); -/* Returns the file descriptor for the usb_device. Used in conjunction with - * usb_device_new() for sharing USB devices across address spaces. - */ +/* Returns the file descriptor for the usb_device */ int usb_device_get_fd(struct usb_device *device); /* Returns the name for the USB device, which is the same as |
