| 54 | /* Device commands */ |
| 55 | |
| 56 | void |
| 57 | ionic_dev_cmd_identify(struct ionic_dev *idev, uint8_t ver) |
| 58 | { |
| 59 | union ionic_dev_cmd cmd = { |
| 60 | .identify.opcode = IONIC_CMD_IDENTIFY, |
| 61 | .identify.ver = ver, |
| 62 | }; |
| 63 | |
| 64 | ionic_dev_cmd_go(idev, &cmd); |
| 65 | } |
| 66 | |
| 67 | void |
| 68 | ionic_dev_cmd_init(struct ionic_dev *idev) |
no test coverage detected