Whitespace cleanup

This commit is contained in:
Pete Batard 2010-05-12 21:46:31 -03:00 committed by Daniel Drake
parent 23b5db8b3e
commit a636df4ca1
5 changed files with 55 additions and 55 deletions

View file

@ -169,7 +169,7 @@ static int set_mode_async(unsigned char data)
if (!buf) if (!buf)
return -ENOMEM; return -ENOMEM;
transfer = libusb_alloc_transfer(0); transfer = libusb_alloc_transfer(0);
if (!transfer) { if (!transfer) {
free(buf); free(buf);
@ -208,7 +208,7 @@ static int do_sync_intr(unsigned char *data)
} }
static int sync_intr(unsigned char type) static int sync_intr(unsigned char type)
{ {
int r; int r;
unsigned char data[INTR_LENGTH]; unsigned char data[INTR_LENGTH];
@ -396,7 +396,7 @@ static int alloc_transfers(void)
img_transfer = libusb_alloc_transfer(0); img_transfer = libusb_alloc_transfer(0);
if (!img_transfer) if (!img_transfer)
return -ENOMEM; return -ENOMEM;
irq_transfer = libusb_alloc_transfer(0); irq_transfer = libusb_alloc_transfer(0);
if (!irq_transfer) if (!irq_transfer)
return -ENOMEM; return -ENOMEM;
@ -411,7 +411,7 @@ static int alloc_transfers(void)
static void sighandler(int signum) static void sighandler(int signum)
{ {
do_exit = 1; do_exit = 1;
} }
int main(void) int main(void)
@ -470,7 +470,7 @@ int main(void)
} }
printf("shutting down...\n"); printf("shutting down...\n");
if (irq_transfer) { if (irq_transfer) {
r = libusb_cancel_transfer(irq_transfer); r = libusb_cancel_transfer(irq_transfer);
if (r < 0) if (r < 0)
@ -482,11 +482,11 @@ int main(void)
if (r < 0) if (r < 0)
goto out_deinit; goto out_deinit;
} }
while (irq_transfer || img_transfer) while (irq_transfer || img_transfer)
if (libusb_handle_events(NULL) < 0) if (libusb_handle_events(NULL) < 0)
break; break;
if (do_exit == 1) if (do_exit == 1)
r = 0; r = 0;
else else

View file

@ -120,7 +120,7 @@ if (r == 0 && actual_length == sizeof(data)) {
* *
* For details on how to use the synchronous API, see the * For details on how to use the synchronous API, see the
* \ref syncio "synchronous I/O API documentation" pages. * \ref syncio "synchronous I/O API documentation" pages.
* *
* \section async The asynchronous interface * \section async The asynchronous interface
* *
* Asynchronous I/O is the most significant new feature in libusb-1.0. * Asynchronous I/O is the most significant new feature in libusb-1.0.
@ -241,7 +241,7 @@ if (r == 0 && actual_length == sizeof(data)) {
* -# <b>Completion handling</b>: examine transfer results in the * -# <b>Completion handling</b>: examine transfer results in the
* libusb_transfer structure * libusb_transfer structure
* -# <b>Deallocation</b>: clean up resources * -# <b>Deallocation</b>: clean up resources
* *
* *
* \subsection asyncalloc Allocation * \subsection asyncalloc Allocation
* *
@ -394,7 +394,7 @@ if (r == 0 && actual_length == sizeof(data)) {
* request was not supported. * request was not supported.
* *
* \section asyncintr Considerations for interrupt transfers * \section asyncintr Considerations for interrupt transfers
* *
* All interrupt transfers are performed using the polling interval presented * All interrupt transfers are performed using the polling interval presented
* by the bInterval value of the endpoint descriptor. * by the bInterval value of the endpoint descriptor.
* *
@ -512,12 +512,12 @@ if (r == 0 && actual_length == sizeof(data)) {
* -# Repeatedly call libusb_handle_events() in blocking mode from a dedicated * -# Repeatedly call libusb_handle_events() in blocking mode from a dedicated
* thread. * thread.
* *
* The first option is plainly not very nice, and will cause unnecessary * The first option is plainly not very nice, and will cause unnecessary
* CPU wakeups leading to increased power usage and decreased battery life. * CPU wakeups leading to increased power usage and decreased battery life.
* The second option is not very nice either, but may be the nicest option * The second option is not very nice either, but may be the nicest option
* available to you if the "proper" approach can not be applied to your * available to you if the "proper" approach can not be applied to your
* application (read on...). * application (read on...).
* *
* The recommended option is to integrate libusb with your application main * The recommended option is to integrate libusb with your application main
* event loop. libusb exposes a set of file descriptors which allow you to do * event loop. libusb exposes a set of file descriptors which allow you to do
* this. Your main loop is probably already calling poll() or select() or a * this. Your main loop is probably already calling poll() or select() or a
@ -757,7 +757,7 @@ void myfunc() {
* the loop, <em>up to 120 seconds later.</em> Clearly a two-minute delay is * the loop, <em>up to 120 seconds later.</em> Clearly a two-minute delay is
* undesirable, and don't even think about using short timeouts to circumvent * undesirable, and don't even think about using short timeouts to circumvent
* this issue! * this issue!
* *
* The solution here is to ensure that no two threads are ever polling the * The solution here is to ensure that no two threads are ever polling the
* file descriptors at the same time. A naive implementation of this would * file descriptors at the same time. A naive implementation of this would
* impact the capabilities of the library, so libusb offers the scheme * impact the capabilities of the library, so libusb offers the scheme
@ -765,7 +765,7 @@ void myfunc() {
* *
* Before we go any further, it is worth mentioning that all libusb-wrapped * Before we go any further, it is worth mentioning that all libusb-wrapped
* event handling procedures fully adhere to the scheme documented below. * event handling procedures fully adhere to the scheme documented below.
* This includes libusb_handle_events() and all the synchronous I/O functions - * This includes libusb_handle_events() and all the synchronous I/O functions -
* libusb hides this headache from you. You do not need to worry about any * libusb hides this headache from you. You do not need to worry about any
* of these issues if you stick to that level. * of these issues if you stick to that level.
* *
@ -853,7 +853,7 @@ if (libusb_try_lock_events(ctx) == 0) {
libusb_unlock_event_waiters(ctx); libusb_unlock_event_waiters(ctx);
goto retry; goto retry;
} }
libusb_wait_for_event(ctx); libusb_wait_for_event(ctx);
} }
libusb_unlock_event_waiters(ctx); libusb_unlock_event_waiters(ctx);
@ -1461,7 +1461,7 @@ API_EXPORTED int libusb_try_lock_events(libusb_context *ctx)
if (r) if (r)
return 1; return 1;
ctx->event_handler_active = 1; ctx->event_handler_active = 1;
return 0; return 0;
} }
@ -1727,7 +1727,7 @@ static int handle_timeouts_locked(struct libusb_context *ctx)
(cur_tv->tv_sec == systime.tv_sec && (cur_tv->tv_sec == systime.tv_sec &&
cur_tv->tv_usec > systime.tv_usec)) cur_tv->tv_usec > systime.tv_usec))
return 0; return 0;
/* otherwise, we've got an expired timeout to handle */ /* otherwise, we've got an expired timeout to handle */
handle_timeout(transfer); handle_timeout(transfer);
} }
@ -2058,7 +2058,7 @@ API_EXPORTED int libusb_pollfds_handle_timeouts(libusb_context *ctx)
* need to use this function if you are calling poll() or select() or similar * need to use this function if you are calling poll() or select() or similar
* on libusb's file descriptors yourself - you do not need to use it if you * on libusb's file descriptors yourself - you do not need to use it if you
* are calling libusb_handle_events() or a variant directly. * are calling libusb_handle_events() or a variant directly.
* *
* You should call this function in your main loop in order to determine how * You should call this function in your main loop in order to determine how
* long to wait for select() or poll() to return results. libusb needs to be * long to wait for select() or poll() to return results. libusb needs to be
* called into at this timeout, so you should use it as an upper bound on * called into at this timeout, so you should use it as an upper bound on
@ -2275,7 +2275,7 @@ void usbi_handle_disconnect(struct libusb_device_handle *handle)
/* terminate all pending transfers with the LIBUSB_TRANSFER_NO_DEVICE /* terminate all pending transfers with the LIBUSB_TRANSFER_NO_DEVICE
* status code. * status code.
* *
* this is a bit tricky because: * this is a bit tricky because:
* 1. we can't do transfer completion while holding flying_transfers_lock * 1. we can't do transfer completion while holding flying_transfers_lock
* 2. the transfers list can change underneath us - if we were to build a * 2. the transfers list can change underneath us - if we were to build a

View file

@ -39,10 +39,10 @@ struct list_head {
struct list_head *prev, *next; struct list_head *prev, *next;
}; };
/* Get an entry from the list /* Get an entry from the list
* ptr - the address of this list_head element in "type" * ptr - the address of this list_head element in "type"
* type - the data type that contains "member" * type - the data type that contains "member"
* member - the list_head element in "type" * member - the list_head element in "type"
*/ */
#define list_entry(ptr, type, member) \ #define list_entry(ptr, type, member) \
((type *)((char *)(ptr) - (unsigned long)(&((type *)0L)->member))) ((type *)((char *)(ptr) - (unsigned long)(&((type *)0L)->member)))
@ -160,7 +160,7 @@ struct libusb_context {
struct list_head open_devs; struct list_head open_devs;
usbi_mutex_t open_devs_lock; usbi_mutex_t open_devs_lock;
/* this is a list of in-flight transfer handles, sorted by timeout /* this is a list of in-flight transfer handles, sorted by timeout
* expiration. URBs to timeout the soonest are placed at the beginning of * expiration. URBs to timeout the soonest are placed at the beginning of
* the list, URBs that will time out later are placed after, and urbs with * the list, URBs that will time out later are placed after, and urbs with
* infinite timeout are always placed at the very end. */ * infinite timeout are always placed at the very end. */
@ -663,7 +663,7 @@ struct usbi_os_backend {
*/ */
int (*kernel_driver_active)(struct libusb_device_handle *handle, int (*kernel_driver_active)(struct libusb_device_handle *handle,
int interface); int interface);
/* Detach a kernel driver from an interface. Optional. /* Detach a kernel driver from an interface. Optional.
* *
* After detaching a kernel driver, the interface should be available * After detaching a kernel driver, the interface should be available

View file

@ -140,7 +140,7 @@ static int ep_to_pipeRef(struct libusb_device_handle *dev_handle, uint8_t ep, ui
/* No pipe found with the correct endpoint address */ /* No pipe found with the correct endpoint address */
usbi_warn (HANDLE_CTX(dev_handle), "no pipeRef found with endpoint address 0x%02x.", ep); usbi_warn (HANDLE_CTX(dev_handle), "no pipeRef found with endpoint address 0x%02x.", ep);
return -1; return -1;
} }
@ -178,7 +178,7 @@ static usb_device_t **usb_get_next_device (io_iterator_t deviceIterator, UInt32
(*plugInInterface)->Stop(plugInInterface); (*plugInInterface)->Stop(plugInInterface);
IODestroyPlugInInterface (plugInInterface); IODestroyPlugInInterface (plugInInterface);
(*(device))->GetLocationID(device, locationp); (*(device))->GetLocationID(device, locationp);
return device; return device;
@ -211,7 +211,7 @@ static kern_return_t darwin_get_device (uint32_t dev_location, usb_device_t ***d
static void darwin_devices_detached (void *ptr, io_iterator_t rem_devices) { static void darwin_devices_detached (void *ptr, io_iterator_t rem_devices) {
struct libusb_context *ctx = (struct libusb_context *)ptr; struct libusb_context *ctx = (struct libusb_context *)ptr;
struct libusb_device_handle *handle; struct libusb_device_handle *handle;
struct darwin_device_priv *dpriv; struct darwin_device_priv *dpriv;
@ -279,7 +279,7 @@ static void *event_thread_main (void *arg0) {
IOServiceMatching(kIOUSBDeviceClassName), IOServiceMatching(kIOUSBDeviceClassName),
(IOServiceMatchingCallback)darwin_devices_detached, (IOServiceMatchingCallback)darwin_devices_detached,
(void *)ctx, &libusb_rem_device_iterator); (void *)ctx, &libusb_rem_device_iterator);
if (kresult != kIOReturnSuccess) { if (kresult != kIOReturnSuccess) {
usbi_err (ctx, "could not add hotplug event source: %s", darwin_error_str (kresult)); usbi_err (ctx, "could not add hotplug event source: %s", darwin_error_str (kresult));
@ -437,7 +437,7 @@ static int darwin_get_config_descriptor(struct libusb_device *dev, uint8_t confi
static int process_new_device (struct libusb_context *ctx, usb_device_t **device, UInt32 locationID, struct discovered_devs **_discdevs) { static int process_new_device (struct libusb_context *ctx, usb_device_t **device, UInt32 locationID, struct discovered_devs **_discdevs) {
struct darwin_device_priv *priv; struct darwin_device_priv *priv;
struct libusb_device *dev; struct libusb_device *dev;
struct discovered_devs *discdevs; struct discovered_devs *discdevs;
UInt16 address, idVendor, idProduct; UInt16 address, idVendor, idProduct;
UInt8 bDeviceClass, bDeviceSubClass; UInt8 bDeviceClass, bDeviceSubClass;
@ -467,7 +467,7 @@ static int process_new_device (struct libusb_context *ctx, usb_device_t **device
req.wIndex = 0; req.wIndex = 0;
req.wLength = sizeof(IOUSBDeviceDescriptor); req.wLength = sizeof(IOUSBDeviceDescriptor);
req.pData = &(priv->dev_descriptor); req.pData = &(priv->dev_descriptor);
(*(device))->GetDeviceAddress (device, (USBDeviceAddress *)&address); (*(device))->GetDeviceAddress (device, (USBDeviceAddress *)&address);
(*(device))->GetDeviceProduct (device, &idProduct); (*(device))->GetDeviceProduct (device, &idProduct);
(*(device))->GetDeviceVendor (device, &idVendor); (*(device))->GetDeviceVendor (device, &idVendor);
@ -511,7 +511,7 @@ static int process_new_device (struct libusb_context *ctx, usb_device_t **device
} }
/**** end: retrieve device descriptors ****/ /**** end: retrieve device descriptors ****/
/* catch buggy hubs (which appear to be virtual). Apple's own USB prober has problems with these devices. */ /* catch buggy hubs (which appear to be virtual). Apple's own USB prober has problems with these devices. */
if (libusb_le16_to_cpu (priv->dev_descriptor.idProduct) != idProduct) { if (libusb_le16_to_cpu (priv->dev_descriptor.idProduct) != idProduct) {
/* not a valid device */ /* not a valid device */
@ -538,9 +538,9 @@ static int process_new_device (struct libusb_context *ctx, usb_device_t **device
ret = LIBUSB_ERROR_NO_MEM; ret = LIBUSB_ERROR_NO_MEM;
break; break;
} }
*_discdevs = discdevs; *_discdevs = discdevs;
usbi_info (ctx, "found device with address %d at %s", dev->device_address, priv->sys_path); usbi_info (ctx, "found device with address %d at %s", dev->device_address, priv->sys_path);
} while (0); } while (0);
@ -558,7 +558,7 @@ static int darwin_get_device_list(struct libusb_context *ctx, struct discovered_
if (!libusb_darwin_mp) if (!libusb_darwin_mp)
return LIBUSB_ERROR_INVALID_PARAM; return LIBUSB_ERROR_INVALID_PARAM;
kresult = usb_setup_device_iterator (&deviceIterator); kresult = usb_setup_device_iterator (&deviceIterator);
if (kresult != kIOReturnSuccess) if (kresult != kIOReturnSuccess)
return darwin_to_libusb (kresult); return darwin_to_libusb (kresult);
@ -670,7 +670,7 @@ static void darwin_close (struct libusb_device_handle *dev_handle) {
usbi_err (HANDLE_CTX (dev_handle), "USBDeviceClose: %s", darwin_error_str(kresult)); usbi_err (HANDLE_CTX (dev_handle), "USBDeviceClose: %s", darwin_error_str(kresult));
} }
} }
kresult = (*(dpriv->device))->Release(dpriv->device); kresult = (*(dpriv->device))->Release(dpriv->device);
if (kresult) { if (kresult) {
/* Log the fact that we had a problem closing the file, however failing a /* Log the fact that we had a problem closing the file, however failing a
@ -733,7 +733,7 @@ static int darwin_get_interface (usb_device_t **darwin_device, uint8_t ifc, io_s
io_iterator_t interface_iterator; io_iterator_t interface_iterator;
*usbInterfacep = IO_OBJECT_NULL; *usbInterfacep = IO_OBJECT_NULL;
/* Setup the Interface Request */ /* Setup the Interface Request */
request.bInterfaceClass = kIOUSBFindInterfaceDontCare; request.bInterfaceClass = kIOUSBFindInterfaceDontCare;
request.bInterfaceSubClass = kIOUSBFindInterfaceDontCare; request.bInterfaceSubClass = kIOUSBFindInterfaceDontCare;
@ -746,10 +746,10 @@ static int darwin_get_interface (usb_device_t **darwin_device, uint8_t ifc, io_s
for ( current_interface = 0 ; current_interface <= ifc ; current_interface++ ) for ( current_interface = 0 ; current_interface <= ifc ; current_interface++ )
*usbInterfacep = IOIteratorNext(interface_iterator); *usbInterfacep = IOIteratorNext(interface_iterator);
/* done with the interface iterator */ /* done with the interface iterator */
IOObjectRelease(interface_iterator); IOObjectRelease(interface_iterator);
return 0; return 0;
} }
@ -767,7 +767,7 @@ static int get_endpoints (struct libusb_device_handle *dev_handle, int iface) {
int i; int i;
usbi_info (HANDLE_CTX (dev_handle), "building table of endpoints."); usbi_info (HANDLE_CTX (dev_handle), "building table of endpoints.");
/* retrieve the total number of endpoints on this interface */ /* retrieve the total number of endpoints on this interface */
kresult = (*(cInterface->interface))->GetNumEndpoints(cInterface->interface, &numep); kresult = (*(cInterface->interface))->GetNumEndpoints(cInterface->interface, &numep);
if (kresult) { if (kresult) {
@ -792,7 +792,7 @@ static int get_endpoints (struct libusb_device_handle *dev_handle, int iface) {
} }
cInterface->num_endpoints = numep; cInterface->num_endpoints = numep;
return 0; return 0;
} }
@ -827,7 +827,7 @@ static int darwin_claim_interface(struct libusb_device_handle *dev_handle, int i
usbi_err (HANDLE_CTX (dev_handle), "GetNumberOfConfigurations: %s", darwin_error_str(kresult)); usbi_err (HANDLE_CTX (dev_handle), "GetNumberOfConfigurations: %s", darwin_error_str(kresult));
return darwin_to_libusb(kresult); return darwin_to_libusb(kresult);
} }
if (nConfig < 1) { if (nConfig < 1) {
usbi_err (HANDLE_CTX (dev_handle), "GetNumberOfConfigurations: no configurations"); usbi_err (HANDLE_CTX (dev_handle), "GetNumberOfConfigurations: no configurations");
return LIBUSB_ERROR_OTHER; return LIBUSB_ERROR_OTHER;
@ -866,7 +866,7 @@ static int darwin_claim_interface(struct libusb_device_handle *dev_handle, int i
usbi_err (HANDLE_CTX (dev_handle), "interface not found"); usbi_err (HANDLE_CTX (dev_handle), "interface not found");
return LIBUSB_ERROR_NOT_FOUND; return LIBUSB_ERROR_NOT_FOUND;
} }
/* get an interface to the device's interface */ /* get an interface to the device's interface */
kresult = IOCreatePlugInInterfaceForService (usbInterface, kIOUSBInterfaceUserClientTypeID, kresult = IOCreatePlugInInterfaceForService (usbInterface, kIOUSBInterfaceUserClientTypeID,
kIOCFPlugInInterfaceID, &plugInInterface, &score); kIOCFPlugInInterfaceID, &plugInInterface, &score);
@ -882,7 +882,7 @@ static int darwin_claim_interface(struct libusb_device_handle *dev_handle, int i
/* ignore release error */ /* ignore release error */
(void)IOObjectRelease (usbInterface); (void)IOObjectRelease (usbInterface);
/* Do the actual claim */ /* Do the actual claim */
kresult = (*plugInInterface)->QueryInterface(plugInInterface, kresult = (*plugInInterface)->QueryInterface(plugInInterface,
CFUUIDGetUUIDBytes(kIOUSBInterfaceInterfaceID), CFUUIDGetUUIDBytes(kIOUSBInterfaceInterfaceID),
@ -891,7 +891,7 @@ static int darwin_claim_interface(struct libusb_device_handle *dev_handle, int i
usbi_err (HANDLE_CTX (dev_handle), "QueryInterface: %s", darwin_error_str(kresult)); usbi_err (HANDLE_CTX (dev_handle), "QueryInterface: %s", darwin_error_str(kresult));
return darwin_to_libusb (kresult); return darwin_to_libusb (kresult);
} }
/* We no longer need the intermediate plug-in */ /* We no longer need the intermediate plug-in */
(*plugInInterface)->Release(plugInInterface); (*plugInInterface)->Release(plugInInterface);
@ -945,7 +945,7 @@ static int darwin_release_interface(struct libusb_device_handle *dev_handle, int
/* clean up endpoint data */ /* clean up endpoint data */
cInterface->num_endpoints = 0; cInterface->num_endpoints = 0;
/* delete the interface's async event source */ /* delete the interface's async event source */
if (cInterface->cfSource) { if (cInterface->cfSource) {
CFRunLoopRemoveSource (libusb_darwin_acfl, cInterface->cfSource, kCFRunLoopDefaultMode); CFRunLoopRemoveSource (libusb_darwin_acfl, cInterface->cfSource, kCFRunLoopDefaultMode);
@ -1043,7 +1043,7 @@ static int darwin_kernel_driver_active(struct libusb_device_handle *dev_handle,
return darwin_to_libusb (kresult); return darwin_to_libusb (kresult);
} }
driver = IORegistryEntryCreateCFProperty (usbInterface, kIOBundleIdentifierKey, kCFAllocatorDefault, 0); driver = IORegistryEntryCreateCFProperty (usbInterface, kIOBundleIdentifierKey, kCFAllocatorDefault, 0);
IOObjectRelease (usbInterface); IOObjectRelease (usbInterface);
@ -1084,7 +1084,7 @@ static int submit_bulk_transfer(struct usbi_transfer *itransfer) {
/* are we reading or writing? */ /* are we reading or writing? */
is_read = transfer->endpoint & LIBUSB_ENDPOINT_IN; is_read = transfer->endpoint & LIBUSB_ENDPOINT_IN;
if (ep_to_pipeRef (transfer->dev_handle, transfer->endpoint, &pipeRef, &iface) != 0) { if (ep_to_pipeRef (transfer->dev_handle, transfer->endpoint, &pipeRef, &iface) != 0) {
usbi_err (TRANSFER_CTX (transfer), "endpoint not found on any open interface"); usbi_err (TRANSFER_CTX (transfer), "endpoint not found on any open interface");
@ -1095,7 +1095,7 @@ static int submit_bulk_transfer(struct usbi_transfer *itransfer) {
(*(cInterface->interface))->GetPipeProperties (cInterface->interface, pipeRef, &direction, &number, (*(cInterface->interface))->GetPipeProperties (cInterface->interface, pipeRef, &direction, &number,
&transferType, &maxPacketSize, &interval); &transferType, &maxPacketSize, &interval);
/* submit the request */ /* submit the request */
/* timeouts are unavailable on interrupt endpoints */ /* timeouts are unavailable on interrupt endpoints */
if (transferType == kUSBInterrupt) { if (transferType == kUSBInterrupt) {
@ -1139,7 +1139,7 @@ static int submit_iso_transfer(struct usbi_transfer *itransfer) {
/* are we reading or writing? */ /* are we reading or writing? */
is_read = transfer->endpoint & LIBUSB_ENDPOINT_IN; is_read = transfer->endpoint & LIBUSB_ENDPOINT_IN;
/* construct an array of IOUSBIsocFrames */ /* construct an array of IOUSBIsocFrames */
tpriv->isoc_framelist = (IOUSBIsocFrame*) calloc (transfer->num_iso_packets, sizeof(IOUSBIsocFrame)); tpriv->isoc_framelist = (IOUSBIsocFrame*) calloc (transfer->num_iso_packets, sizeof(IOUSBIsocFrame));
if (!tpriv->isoc_framelist) if (!tpriv->isoc_framelist)
@ -1170,7 +1170,7 @@ static int submit_iso_transfer(struct usbi_transfer *itransfer) {
/* schedule for a frame a little in the future */ /* schedule for a frame a little in the future */
frame += 2; frame += 2;
/* submit the request */ /* submit the request */
if (is_read) if (is_read)
kresult = (*(cInterface->interface))->ReadIsochPipeAsync(cInterface->interface, pipeRef, transfer->buffer, frame, kresult = (*(cInterface->interface))->ReadIsochPipeAsync(cInterface->interface, pipeRef, transfer->buffer, frame,
@ -1191,7 +1191,7 @@ static int submit_iso_transfer(struct usbi_transfer *itransfer) {
return darwin_to_libusb (kresult); return darwin_to_libusb (kresult);
} }
static int submit_control_transfer(struct usbi_transfer *itransfer) { static int submit_control_transfer(struct usbi_transfer *itransfer) {
struct libusb_transfer *transfer = __USBI_TRANSFER_TO_LIBUSB_TRANSFER(itransfer); struct libusb_transfer *transfer = __USBI_TRANSFER_TO_LIBUSB_TRANSFER(itransfer);
struct libusb_control_setup *setup = (struct libusb_control_setup *) transfer->buffer; struct libusb_control_setup *setup = (struct libusb_control_setup *) transfer->buffer;
struct darwin_device_priv *dpriv = (struct darwin_device_priv *)transfer->dev_handle->dev->os_priv; struct darwin_device_priv *dpriv = (struct darwin_device_priv *)transfer->dev_handle->dev->os_priv;
@ -1218,7 +1218,7 @@ static int submit_control_transfer(struct usbi_transfer *itransfer) {
if (kresult != kIOReturnSuccess) if (kresult != kIOReturnSuccess)
usbi_err (TRANSFER_CTX (transfer), "control request failed: %s", darwin_error_str(kresult)); usbi_err (TRANSFER_CTX (transfer), "control request failed: %s", darwin_error_str(kresult));
return darwin_to_libusb (kresult); return darwin_to_libusb (kresult);
} }
@ -1270,7 +1270,7 @@ static int darwin_abort_transfers (struct usbi_transfer *itransfer) {
/* abort transactions */ /* abort transactions */
(*(cInterface->interface))->AbortPipe (cInterface->interface, pipeRef); (*(cInterface->interface))->AbortPipe (cInterface->interface, pipeRef);
usbi_info (ITRANSFER_CTX (itransfer), "calling clear pipe stall to clear the data toggle bit"); usbi_info (ITRANSFER_CTX (itransfer), "calling clear pipe stall to clear the data toggle bit");
/* clear the data toggle bit */ /* clear the data toggle bit */
@ -1426,7 +1426,7 @@ static int op_handle_events(struct libusb_context *ctx, struct pollfd *fds, nfds
usbi_remove_pollfd(HANDLE_CTX(handle), hpriv->fds[0]); usbi_remove_pollfd(HANDLE_CTX(handle), hpriv->fds[0]);
usbi_handle_disconnect(handle); usbi_handle_disconnect(handle);
/* done with this device */ /* done with this device */
continue; continue;
case MESSAGE_ASYNC_IO_COMPLETE: case MESSAGE_ASYNC_IO_COMPLETE:

View file

@ -80,7 +80,7 @@ API_EXPORTED int libusb_control_transfer(libusb_device_handle *dev_handle,
if (!transfer) if (!transfer)
return LIBUSB_ERROR_NO_MEM; return LIBUSB_ERROR_NO_MEM;
buffer = malloc(LIBUSB_CONTROL_SETUP_SIZE + wLength); buffer = malloc(LIBUSB_CONTROL_SETUP_SIZE + wLength);
if (!buffer) { if (!buffer) {
libusb_free_transfer(transfer); libusb_free_transfer(transfer);