(entry: RedirectionTableEntry)
| 59 | ((entry >> 14) & 0x1u64) as u8 |
| 60 | } |
| 61 | fn trigger_mode(entry: RedirectionTableEntry) -> u8 { |
| 62 | ((entry >> 15) & 0x1u64) as u8 |
| 63 | } |
| 64 | fn interrupt_mask(entry: RedirectionTableEntry) -> u8 { |
| 65 | ((entry >> 16) & 0x1u64) as u8 |
| 66 | } |
no outgoing calls
no test coverage detected