| 314 | } |
| 315 | |
| 316 | static int32_t designware_eth_start(eth_mac_handle_t handle) |
| 317 | { |
| 318 | int32_t ret; |
| 319 | |
| 320 | ret = designware_eth_init(handle); |
| 321 | if (ret) |
| 322 | return ret; |
| 323 | |
| 324 | return 0; |
| 325 | } |
| 326 | |
| 327 | void designware_eth_stop(eth_mac_handle_t handle) |
| 328 | { |
no test coverage detected