| 571 | } |
| 572 | |
| 573 | IOReturn BrcmPatchRAM::hciCommand(void * command, UInt16 length) |
| 574 | { |
| 575 | IOReturn result; |
| 576 | |
| 577 | if ((result = mInterface.hciCommand(command, length)) != kIOReturnSuccess) |
| 578 | AlwaysLog("[%04x:%04x]: device request failed (\"%s\" 0x%08x).\n", mVendorId, mProductId, stringFromReturn(result), result); |
| 579 | |
| 580 | return result; |
| 581 | } |
| 582 | |
| 583 | IOReturn BrcmPatchRAM::hciParseResponse(void* response, UInt16 length, void* output, UInt8* outputLength) |
| 584 | { |
nothing calls this directly
no outgoing calls
no test coverage detected