o NET: move net/core/ethtool.c EXPORT_SYMBOLs from net/netsyms.c

parent 9d159e8d
......@@ -9,6 +9,7 @@
* It's GPL, stupid.
*/
#include <linux/module.h>
#include <linux/types.h>
#include <linux/errno.h>
#include <linux/ethtool.h>
......@@ -727,3 +728,11 @@ int dev_ethtool(struct ifreq *ifr)
return dev->do_ioctl(dev, ifr, SIOCETHTOOL);
return -EOPNOTSUPP;
}
EXPORT_SYMBOL(ethtool_op_get_link);
EXPORT_SYMBOL(ethtool_op_get_sg);
EXPORT_SYMBOL(ethtool_op_get_tso);
EXPORT_SYMBOL(ethtool_op_get_tx_csum);
EXPORT_SYMBOL(ethtool_op_set_sg);
EXPORT_SYMBOL(ethtool_op_set_tso);
EXPORT_SYMBOL(ethtool_op_set_tx_csum);
......@@ -18,7 +18,6 @@
#include <linux/fcdevice.h>
#include <linux/ioport.h>
#include <linux/tty.h>
#include <linux/ethtool.h>
#include <net/snmp.h>
#include <net/dst.h>
#include <net/checksum.h>
......@@ -279,13 +278,4 @@ EXPORT_SYMBOL(wireless_spy_update);
EXPORT_SYMBOL(linkwatch_fire_event);
/* ethtool.c */
EXPORT_SYMBOL(ethtool_op_get_link);
EXPORT_SYMBOL(ethtool_op_get_tx_csum);
EXPORT_SYMBOL(ethtool_op_set_tx_csum);
EXPORT_SYMBOL(ethtool_op_get_sg);
EXPORT_SYMBOL(ethtool_op_set_sg);
EXPORT_SYMBOL(ethtool_op_get_tso);
EXPORT_SYMBOL(ethtool_op_set_tso);
#endif /* CONFIG_NET */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment