| 99 | } |
| 100 | |
| 101 | void |
| 102 | ionic_dev_cmd_port_init(struct ionic_dev *idev) |
| 103 | { |
| 104 | union ionic_dev_cmd cmd = { |
| 105 | .port_init.opcode = IONIC_CMD_PORT_INIT, |
| 106 | .port_init.index = 0, |
| 107 | .port_init.info_pa = rte_cpu_to_le_64(idev->port_info_pa), |
| 108 | }; |
| 109 | |
| 110 | ionic_dev_cmd_go(idev, &cmd); |
| 111 | } |
| 112 | |
| 113 | void |
| 114 | ionic_dev_cmd_port_reset(struct ionic_dev *idev) |
no test coverage detected