As the removal of ethtool capability from bcm43xx has been NACKed, some useful functionality should be added. This patch changes it so that the firmware version is output. Signed-off-by: Larry Finger <Larry.Finger@xxxxxxxxxxxx> --- Index: wireless-2.6/drivers/net/wireless/bcm43xx/bcm43xx_ethtool.c =================================================================== --- wireless-2.6.orig/drivers/net/wireless/bcm43xx/bcm43xx_ethtool.c +++ wireless-2.6/drivers/net/wireless/bcm43xx/bcm43xx_ethtool.c @@ -27,6 +27,7 @@ */ #include "bcm43xx.h" +#include "bcm43xx_main.h" #include "bcm43xx_ethtool.h" #include <linux/netdevice.h> @@ -42,6 +43,8 @@ static void bcm43xx_get_drvinfo(struct n strncpy(info->driver, KBUILD_MODNAME, sizeof(info->driver)); strncpy(info->version, utsname()->release, sizeof(info->version)); strncpy(info->bus_info, pci_name(bcm->pci_dev), ETHTOOL_BUSINFO_LEN); + snprintf(info->fw_version, sizeof(info->fw_version), "0x%x", + bcm43xx_shm_read16(bcm, BCM43xx_SHM_SHARED, BCM43xx_UCODE_REVISION)); } const struct ethtool_ops bcm43xx_ethtool_ops = { - To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html