| 61 | } |
| 62 | |
| 63 | void |
| 64 | virtio_set_status(struct virtio_hw *hw, uint8_t status) |
| 65 | { |
| 66 | if (status != VIRTIO_CONFIG_STATUS_RESET) |
| 67 | status |= VIRTIO_OPS(hw)->get_status(hw); |
| 68 | |
| 69 | VIRTIO_OPS(hw)->set_status(hw, status); |
| 70 | } |
| 71 | |
| 72 | uint8_t |
| 73 | virtio_get_status(struct virtio_hw *hw) |
no outgoing calls
no test coverage detected