| 111 | } |
| 112 | |
| 113 | void |
| 114 | ionic_dev_cmd_port_reset(struct ionic_dev *idev) |
| 115 | { |
| 116 | union ionic_dev_cmd cmd = { |
| 117 | .port_reset.opcode = IONIC_CMD_PORT_RESET, |
| 118 | .port_reset.index = 0, |
| 119 | }; |
| 120 | |
| 121 | ionic_dev_cmd_go(idev, &cmd); |
| 122 | } |
| 123 | |
| 124 | void |
| 125 | ionic_dev_cmd_port_state(struct ionic_dev *idev, uint8_t state) |
no test coverage detected