/* usb_serial_deselect - handle select exit */ static status_t usb_serial_deselect(void *cookie, uint8 event, selectsync *sync) { TRACE_FUNCALLS("> usb_serial_deselect(0x%08x, 0x%08x, %p)\n", cookie, event, sync); SerialDevice *device = (SerialDevice *)cookie; return device->DeSelect(event, sync); }
/* usb_serial_deselect - handle select exit */ static status_t usb_serial_deselect(void *cookie, uint8 event, selectsync *sync) { TRACE_FUNCALLS("> usb_serial_deselect(0x%08x, 0x%08x, %p)\n", cookie, event, sync); SerialDevice *device = (SerialDevice *)cookie; status_t status = device->DeSelect(event, sync); TRACE_FUNCRET("< usb_serial_deselect() returns: 0x%08x\n", status); return status; }