| 95 | { |
| 96 | |
| 97 | __attribute__((visibility("hidden"))) |
| 98 | kern_return_t BrcmPatchRAM_Start(kmod_info_t* ki, void * d) |
| 99 | { |
| 100 | #ifndef NON_RESIDENT |
| 101 | if (!(BrcmPatchRAM::mLoadFirmwareLock = IOLockAlloc())) |
| 102 | return KERN_FAILURE; |
| 103 | #endif |
| 104 | |
| 105 | return KERN_SUCCESS; |
| 106 | } |
| 107 | |
| 108 | __attribute__((visibility("hidden"))) |
| 109 | kern_return_t BrcmPatchRAM_Stop(kmod_info_t* ki, void * d) |
nothing calls this directly
no outgoing calls
no test coverage detected