Wrapper functions for callback testing */
| 710 | |
| 711 | /* Wrapper functions for callback testing */ |
| 712 | static rt_err_t set_ipaddr_wrapper(struct netdev *netdev, void *param) |
| 713 | { |
| 714 | return netdev_set_ipaddr(netdev, (ip_addr_t *)param); |
| 715 | } |
| 716 | |
| 717 | static rt_err_t set_gw_wrapper(struct netdev *netdev, void *param) |
| 718 | { |
nothing calls this directly
no test coverage detected