Ignore:
Timestamp:
2011-02-18T13:36:52Z (14 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
026d6e2, 50ba203, b6c7da6
Parents:
ec59693 (diff), 6427cf67 (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 low/high speed hack

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/drv/generic/remote_usbhc.c

    rec59693 r0c00dac  
    165165                return;
    166166        }
    167 
    168         int rc = usb_iface->reserve_default_address(device);
     167       
     168        bool full_speed = DEV_IPC_GET_ARG1(*call);
     169       
     170        int rc = usb_iface->reserve_default_address(device, full_speed);
    169171
    170172        async_answer_0(callid, rc);
     
    195197                return;
    196198        }
     199       
     200        bool full_speed = DEV_IPC_GET_ARG1(*call);
    197201
    198202        usb_address_t address;
    199         int rc = usb_iface->request_address(device, &address);
     203        int rc = usb_iface->request_address(device, full_speed, &address);
    200204        if (rc != EOK) {
    201205                async_answer_0(callid, rc);
Note: See TracChangeset for help on using the changeset viewer.