Stephen Hemminger wrote:
Add minimal ethtool settings support for ne2k driver. This is needed
for KVM/QEMU environment where ne2k seems to be the simplest stupid
hardware used.
Signed-off-by: Stephen Hemminger <[EMAIL PROTECTED]>
--- a/drivers/net/ne2k-pci.c 2008-01-15 11:21:02.000000000 -0800
+++ b/drivers/net/ne2k-pci.c 2008-01-15 15:43:17.000000000 -0800
@@ -634,8 +634,21 @@ static void ne2k_pci_get_drvinfo(struct
strcpy(info->bus_info, pci_name(pci_dev));
}
+static int ne2k_pci_get_settings(struct net_device *dev,
+ struct ethtool_cmd *cmd)
+{
+ cmd->speed = SPEED_10;
+ cmd->duplex = (ei_status.ne2k_flags & FORCE_FDX)
+ ? DUPLEX_FULL : DUPLEX_HALF;
+ cmd->port = PORT_TP;
+ cmd->transceiver = XCVR_INTERNAL;
+ cmd->autoneg = AUTONEG_DISABLE;
+ return 0;
+}
It's a little bit /too/ minimal... the speed is wrong for a large swath
of 10/100 ne2k chips...
Jeff
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html