Skip to content

Commit 641cb85

Browse files
Vasanthy Kolluridavem330
authored andcommitted
enic: Clean up: Change driver description; Fix tab space; Update MAINTAINERS
1) Change enic driver description to "Cisco VIC Ethernet NIC Driver" 2) Fix tab space 3) Update MAINTAINERS list Signed-off-by: Scott Feldman <[email protected]> Signed-off-by: Vasanthy Kolluri <[email protected]> Signed-off-by: Roopa Prabhu <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent d883aa7 commit 641cb85

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

MAINTAINERS

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1482,9 +1482,10 @@ M: Andy Whitcroft <[email protected]>
14821482
S: Supported
14831483
F: scripts/checkpatch.pl
14841484

1485-
CISCO 10G ETHERNET DRIVER
1485+
CISCO VIC ETHERNET NIC DRIVER
14861486
M: Scott Feldman <[email protected]>
1487-
M: Joe Eykholt <[email protected]>
1487+
M: Vasanthy Kolluri <[email protected]>
1488+
M: Roopa Prabhu <[email protected]>
14881489
S: Supported
14891490
F: drivers/net/enic/
14901491

drivers/net/Kconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2593,11 +2593,11 @@ config EHEA
25932593
will be called ehea.
25942594

25952595
config ENIC
2596-
tristate "Cisco 10G Ethernet NIC support"
2596+
tristate "Cisco VIC Ethernet NIC Support"
25972597
depends on PCI && INET
25982598
select INET_LRO
25992599
help
2600-
This enables the support for the Cisco 10G Ethernet card.
2600+
This enables the support for the Cisco VIC Ethernet card.
26012601

26022602
config IXGBE
26032603
tristate "Intel(R) 10GbE PCI Express adapters support"

drivers/net/enic/enic.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#include "vnic_rss.h"
3434

3535
#define DRV_NAME "enic"
36-
#define DRV_DESCRIPTION "Cisco 10G Ethernet Driver"
36+
#define DRV_DESCRIPTION "Cisco VIC Ethernet NIC Driver"
3737
#define DRV_VERSION "1.3.1.1"
3838
#define DRV_COPYRIGHT "Copyright 2008-2009 Cisco Systems, Inc"
3939
#define PFX DRV_NAME ": "

drivers/net/enic/enic_main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ static void enic_set_multicast_list(struct net_device *netdev)
829829
int promisc = (netdev->flags & IFF_PROMISC) ? 1 : 0;
830830
unsigned int mc_count = netdev_mc_count(netdev);
831831
int allmulti = (netdev->flags & IFF_ALLMULTI) ||
832-
mc_count > ENIC_MULTICAST_PERFECT_FILTERS;
832+
mc_count > ENIC_MULTICAST_PERFECT_FILTERS;
833833
unsigned int flags = netdev->flags | (allmulti ? IFF_ALLMULTI : 0);
834834
u8 mc_addr[ENIC_MULTICAST_PERFECT_FILTERS][ETH_ALEN];
835835
unsigned int i, j;

0 commit comments

Comments
 (0)