| 1847 | } |
| 1848 | |
| 1849 | static void |
| 1850 | its_cmd_mapd(device_t dev, struct its_dev *its_dev, uint8_t valid) |
| 1851 | { |
| 1852 | struct its_cmd_desc desc; |
| 1853 | |
| 1854 | desc.cmd_type = ITS_CMD_MAPD; |
| 1855 | desc.cmd_desc_mapd.its_dev = its_dev; |
| 1856 | desc.cmd_desc_mapd.valid = valid; |
| 1857 | |
| 1858 | its_cmd_send(dev, &desc); |
| 1859 | } |
| 1860 | |
| 1861 | static void |
| 1862 | its_cmd_inv(device_t dev, struct its_dev *its_dev, |
no test coverage detected