mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-23 04:34:11 +08:00
18 lines
486 B
C
18 lines
486 B
C
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||
|
|
||
|
#ifndef _ETHTOOL_COMMON_H
|
||
|
#define _ETHTOOL_COMMON_H
|
||
|
|
||
|
#include <linux/ethtool.h>
|
||
|
|
||
|
extern const char
|
||
|
netdev_features_strings[NETDEV_FEATURE_COUNT][ETH_GSTRING_LEN];
|
||
|
extern const char
|
||
|
rss_hash_func_strings[ETH_RSS_HASH_FUNCS_COUNT][ETH_GSTRING_LEN];
|
||
|
extern const char
|
||
|
tunable_strings[__ETHTOOL_TUNABLE_COUNT][ETH_GSTRING_LEN];
|
||
|
extern const char
|
||
|
phy_tunable_strings[__ETHTOOL_PHY_TUNABLE_COUNT][ETH_GSTRING_LEN];
|
||
|
|
||
|
#endif /* _ETHTOOL_COMMON_H */
|