1 /* SPDX-License-Identifier: GPL-2.0 */
5 #include <linux/ethtool.h>
7 #if IS_ENABLED(CONFIG_NET_SELFTESTS)
9 void net_selftest(struct net_device *ndev, struct ethtool_test *etest,
11 int net_selftest_get_count(void);
12 void net_selftest_get_strings(u8 *data);
16 static inline void net_selftest(struct net_device *ndev, struct ethtool_test *etest,
21 static inline int net_selftest_get_count(void)
26 static inline void net_selftest_get_strings(u8 *data)
31 #endif /* _NET_SELFTESTS */