Searched refs:interrupt_out_buffer (Results 1 - 6 of 6) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/misc/
H A Dldusb.c171 char* interrupt_out_buffer; member in struct:ld_usb
213 kfree(dev->interrupt_out_buffer);
564 /* write the data into interrupt_out_buffer from userspace */
570 if (copy_from_user(dev->interrupt_out_buffer, buffer, bytes_to_write)) {
582 dev->interrupt_out_buffer,
595 dev->interrupt_out_buffer,
720 dev->interrupt_out_buffer = kmalloc(write_buffer_size*dev->interrupt_out_endpoint_size, GFP_KERNEL);
721 if (!dev->interrupt_out_buffer) {
722 dev_err(&intf->dev, "Couldn't allocate interrupt_out_buffer\n");
H A Dlegousbtower.c155 char* interrupt_out_buffer; member in struct:lego_usb_tower
248 kfree (dev->interrupt_out_buffer);
630 /* write the data into interrupt_out_buffer from userspace */
634 if (copy_from_user (dev->interrupt_out_buffer, buffer, bytes_to_write)) {
643 dev->interrupt_out_buffer,
806 dev->interrupt_out_buffer = NULL;
848 dev->interrupt_out_buffer = kmalloc (write_buffer_size, GFP_KERNEL);
849 if (!dev->interrupt_out_buffer) {
850 err("Couldn't allocate interrupt_out_buffer");
H A Dadutux.c106 char* interrupt_out_buffer; member in struct:adu_device
174 kfree(dev->interrupt_out_buffer);
606 /* write the data into interrupt_out_buffer from userspace */
612 if (copy_from_user(dev->interrupt_out_buffer, buffer, bytes_to_write) != 0) {
622 dev->interrupt_out_buffer,
776 dev->interrupt_out_buffer = kmalloc(out_end_size, GFP_KERNEL);
777 if (!dev->interrupt_out_buffer) {
778 dev_err(&interface->dev, "Couldn't allocate interrupt_out_buffer\n");
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/serial/
H A Dcypress_m8.c801 port->interrupt_out_buffer[0] = priv->line_control;
806 port->interrupt_out_buffer[0] = priv->line_control;
825 count = cypress_buf_get(priv->buf, &port->interrupt_out_buffer[offset],
834 port->interrupt_out_buffer[1] = count;
837 port->interrupt_out_buffer[0] |= count;
857 port->interrupt_out_buffer, port->interrupt_out_size,
H A Dusb-serial.c593 kfree(port->interrupt_out_buffer);
946 port->interrupt_out_buffer = kmalloc (buffer_size, GFP_KERNEL);
947 if (!port->interrupt_out_buffer) {
948 dev_err(&interface->dev, "Couldn't allocate interrupt_out_buffer\n");
954 port->interrupt_out_buffer, buffer_size,
1035 kfree(port->interrupt_out_buffer);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/usb/
H A Dserial.h40 * @interrupt_out_buffer: pointer to the interrupt out buffer for this port.
41 * @interrupt_out_size: the size of the interrupt_out_buffer, in bytes.
74 unsigned char * interrupt_out_buffer; member in struct:usb_serial_port

Completed in 71 milliseconds