aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/marvell
diff options
context:
space:
mode:
authorRick Jones <rick.jones2@hp.com>2011-11-21 05:54:05 -0500
committerDavid S. Miller <davem@davemloft.net>2011-11-22 16:43:32 -0500
commit84b405011166e663fe9ef56c29b1d76f59b35568 (patch)
tree7b8648d4da4919f990254d93d1bb8f340a38b230 /drivers/net/ethernet/marvell
parent4e3fd7a06dc20b2d8ec6892233ad2012968fe7b6 (diff)
Sweep away N/A fw_version dustbunnies from the .get_drvinfo routine of a number of drivers
Per discussion with Ben Hutchings and David Miller, go through and remove assignments of "N/A" to fw_version in various drivers' .get_drvinfo routines. While there clean-up some use of bare constants and such. Signed-off-by: Rick Jones <rick.jones2@hp.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/marvell')
-rw-r--r--drivers/net/ethernet/marvell/skge.c1
-rw-r--r--drivers/net/ethernet/marvell/sky2.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/ethernet/marvell/skge.c b/drivers/net/ethernet/marvell/skge.c
index 3943f5f7bb4a..d957b2cf0869 100644
--- a/drivers/net/ethernet/marvell/skge.c
+++ b/drivers/net/ethernet/marvell/skge.c
@@ -396,7 +396,6 @@ static void skge_get_drvinfo(struct net_device *dev,
396 396
397 strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); 397 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
398 strlcpy(info->version, DRV_VERSION, sizeof(info->version)); 398 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
399 strlcpy(info->fw_version, "N/A", sizeof(info->fw_version));
400 strlcpy(info->bus_info, pci_name(skge->hw->pdev), 399 strlcpy(info->bus_info, pci_name(skge->hw->pdev),
401 sizeof(info->bus_info)); 400 sizeof(info->bus_info));
402} 401}
diff --git a/drivers/net/ethernet/marvell/sky2.c b/drivers/net/ethernet/marvell/sky2.c
index ca33908bc7f3..29adc7850ee4 100644
--- a/drivers/net/ethernet/marvell/sky2.c
+++ b/drivers/net/ethernet/marvell/sky2.c
@@ -3645,7 +3645,6 @@ static void sky2_get_drvinfo(struct net_device *dev,
3645 3645
3646 strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); 3646 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
3647 strlcpy(info->version, DRV_VERSION, sizeof(info->version)); 3647 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
3648 strlcpy(info->fw_version, "N/A", sizeof(info->fw_version));
3649 strlcpy(info->bus_info, pci_name(sky2->hw->pdev), 3648 strlcpy(info->bus_info, pci_name(sky2->hw->pdev),
3650 sizeof(info->bus_info)); 3649 sizeof(info->bus_info));
3651} 3650}