| 713 | } |
| 714 | |
| 715 | static int |
| 716 | atl_dev_reset(struct rte_eth_dev *dev) |
| 717 | { |
| 718 | int ret; |
| 719 | |
| 720 | ret = atl_dev_close(dev); |
| 721 | if (ret) |
| 722 | return ret; |
| 723 | |
| 724 | ret = eth_atl_dev_init(dev); |
| 725 | |
| 726 | return ret; |
| 727 | } |
| 728 | |
| 729 | static int |
| 730 | atl_dev_configure_macsec(struct rte_eth_dev *dev) |
nothing calls this directly
no test coverage detected