Changeset f126c87 in mainline for uspace/drv/nic/ar9271/ath_usb.c


Ignore:
Timestamp:
2016-09-01T16:46:27Z (8 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2a2fbc8
Parents:
9befb0d (diff), bdfdc51c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge from mainline.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/nic/ar9271/ath_usb.c

    r9befb0d rf126c87  
    100100        usb_pipe_t *pipe = &usb_device_get_mapped_ep(
    101101            ath_usb->usb_device, ath_usb->output_ctrl_pipe_number)->pipe;
    102 
     102       
    103103        return usb_pipe_write(pipe, buffer, buffer_size);
    104104}
     
    120120        usb_pipe_t *pipe = &usb_device_get_mapped_ep(
    121121            ath_usb->usb_device, ath_usb->input_ctrl_pipe_number)->pipe;
    122 
     122       
    123123        return usb_pipe_read(pipe, buffer, buffer_size, transferred_size);
    124124}
     
    141141        memcpy(complete_buffer + sizeof(ath_usb_data_header_t),
    142142            buffer, buffer_size);
    143 
     143       
    144144        ath_usb_data_header_t *data_header =
    145145            (ath_usb_data_header_t *) complete_buffer;
    146146        data_header->length = host2uint16_t_le(buffer_size);
    147147        data_header->tag = host2uint16_t_le(TX_TAG);
    148 
     148       
    149149        ath_usb_t *ath_usb = (ath_usb_t *) ath->specific_data;
    150150        usb_pipe_t *pipe = &usb_device_get_mapped_ep(
    151151            ath_usb->usb_device, ath_usb->output_data_pipe_number)->pipe;
    152 
     152       
    153153        int ret_val = usb_pipe_write(pipe, complete_buffer,
    154154            complete_buffer_size);
    155 
     155       
    156156        free(complete_buffer);
    157 
     157       
    158158        return ret_val;
    159159}
     
    175175        usb_pipe_t *pipe = &usb_device_get_mapped_ep(
    176176            ath_usb->usb_device, ath_usb->input_data_pipe_number)->pipe;
    177 
     177       
    178178        return usb_pipe_read(pipe, buffer, buffer_size, transferred_size);
    179179}
Note: See TracChangeset for help on using the changeset viewer.