| 15 | #include <virtio.h> |
| 16 | |
| 17 | rt_inline void _virtio_dev_check(struct virtio_device *dev) |
| 18 | { |
| 19 | RT_ASSERT(dev != RT_NULL); |
| 20 | RT_ASSERT(dev->mmio_config != RT_NULL); |
| 21 | } |
| 22 | |
| 23 | void virtio_reset_device(struct virtio_device *dev) |
| 24 | { |
no outgoing calls
no test coverage detected