Capabilities
| 325 | |
| 326 | // Capabilities |
| 327 | __attribute__((always_inline)) inline uint32_t GetMaxMemoryPageSize(){ |
| 328 | return 0x1000 /*(1 << 12)*/ << NVME_CAP_MPSMAX(cRegs->cap); |
| 329 | } |
| 330 | |
| 331 | __attribute__((always_inline)) inline uint32_t GetMinMemoryPageSize(){ |
| 332 | return 0x1000 /*(1 << 12)*/ << NVME_CAP_MPSMIN(cRegs->cap); |
nothing calls this directly
no outgoing calls
no test coverage detected