| 1099 | } |
| 1100 | |
| 1101 | IOReturn BrcmPatchRAM::hciCommand(void * command, UInt16 length) |
| 1102 | { |
| 1103 | IOReturn result; |
| 1104 | if ((result = mInterface.hciCommand(command, length)) != kIOReturnSuccess) |
| 1105 | AlwaysLog("[%04x:%04x]: device request failed (\"%s\" 0x%08x).\n", mVendorId, mProductId, stringFromReturn(result), result); |
| 1106 | |
| 1107 | return result; |
| 1108 | } |
| 1109 | |
| 1110 | IOReturn BrcmPatchRAM::hciParseResponse(void* response, UInt16 length, void* output, UInt8* outputLength) |
| 1111 | { |
nothing calls this directly
no outgoing calls
no test coverage detected