diff options
author | Pete Batard <pete@akeo.ie> | 2012-04-03 13:40:39 +0100 |
---|---|---|
committer | Pete Batard <pete@akeo.ie> | 2012-04-03 15:42:10 +0100 |
commit | 791b7473ec38155ee3d1d9889f3d0f1b4c8f33f0 (patch) | |
tree | 009cb8fb6347691d69125939a399d538a21cca02 /libusb/sync.c | |
parent | f98eaca0985364be00fcfde3fd3884075092a4e9 (diff) | |
download | android_external_libusbx-791b7473ec38155ee3d1d9889f3d0f1b4c8f33f0.tar.gz android_external_libusbx-791b7473ec38155ee3d1d9889f3d0f1b4c8f33f0.tar.bz2 android_external_libusbx-791b7473ec38155ee3d1d9889f3d0f1b4c8f33f0.zip |
Misc: Rebrand to libusbx
* Mentions of 'libusb' in doxygen are changed to 'libusbx'
* Also update copyright notices and remove unneeded EOF LFs
Diffstat (limited to 'libusb/sync.c')
-rw-r--r-- | libusb/sync.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/libusb/sync.c b/libusb/sync.c index 8eed47b..47445b7 100644 --- a/libusb/sync.c +++ b/libusb/sync.c @@ -1,6 +1,6 @@ /* - * Synchronous I/O functions for libusb - * Copyright (C) 2007-2008 Daniel Drake <dsd@gentoo.org> + * Synchronous I/O functions for libusbx + * Copyright © 2007-2008 Daniel Drake <dsd@gentoo.org> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -228,9 +228,9 @@ static int do_sync_bulk_transfer(struct libusb_device_handle *dev_handle, * Not all of the data may have been written. * * Also check <tt>transferred</tt> when dealing with a timeout error code. - * libusb may have to split your transfer into a number of chunks to satisfy + * libusbx may have to split your transfer into a number of chunks to satisfy * underlying O/S requirements, meaning that the timeout may expire after - * the first few chunks have completed. libusb is careful not to lose any data + * the first few chunks have completed. libusbx is careful not to lose any data * that may have been transferred; do not assume that timeout conditions * indicate a complete lack of I/O. * @@ -276,9 +276,9 @@ int API_EXPORTED libusb_bulk_transfer(struct libusb_device_handle *dev_handle, * writes. Not all of the data may have been written. * * Also check <tt>transferred</tt> when dealing with a timeout error code. - * libusb may have to split your transfer into a number of chunks to satisfy + * libusbx may have to split your transfer into a number of chunks to satisfy * underlying O/S requirements, meaning that the timeout may expire after - * the first few chunks have completed. libusb is careful not to lose any data + * the first few chunks have completed. libusbx is careful not to lose any data * that may have been transferred; do not assume that timeout conditions * indicate a complete lack of I/O. * @@ -311,4 +311,3 @@ int API_EXPORTED libusb_interrupt_transfer( return do_sync_bulk_transfer(dev_handle, endpoint, data, length, transferred, timeout, LIBUSB_TRANSFER_TYPE_INTERRUPT); } - |