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; +} + static const struct ethtool_ops ne2k_pci_ethtool_ops = { .get_drvinfo = ne2k_pci_get_drvinfo, + .get_settings = ne2k_get_settings, }; static void __devexit ne2k_pci_remove_one (struct pci_dev *pdev) -- Stephen Hemminger <[EMAIL PROTECTED]> -- 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