diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
commit | c71c03bda1e86c9d5198c5d83f712e695c4f2a1e (patch) | |
tree | ecb166cb3e2b7e2adb3b5e292245fefd23381ac8 /drivers/net/amd8111e.c | |
parent | ea53c912f8a86a8567697115b6a0d8152beee5c8 (diff) | |
parent | 6a00f206debf8a5c8899055726ad127dbeeed098 (diff) |
Merge branch 'mpi-master' into wip-k-fmlpwip-k-fmlp
Conflicts:
litmus/sched_cedf.c
Diffstat (limited to 'drivers/net/amd8111e.c')
-rw-r--r-- | drivers/net/amd8111e.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/drivers/net/amd8111e.c b/drivers/net/amd8111e.c index 585c25f4b60c..241b185e6569 100644 --- a/drivers/net/amd8111e.c +++ b/drivers/net/amd8111e.c | |||
@@ -106,7 +106,7 @@ MODULE_DESCRIPTION ("AMD8111 based 10/100 Ethernet Controller. Driver Version "M | |||
106 | MODULE_LICENSE("GPL"); | 106 | MODULE_LICENSE("GPL"); |
107 | MODULE_DEVICE_TABLE(pci, amd8111e_pci_tbl); | 107 | MODULE_DEVICE_TABLE(pci, amd8111e_pci_tbl); |
108 | module_param_array(speed_duplex, int, NULL, 0); | 108 | module_param_array(speed_duplex, int, NULL, 0); |
109 | MODULE_PARM_DESC(speed_duplex, "Set device speed and duplex modes, 0: Auto Negotitate, 1: 10Mbps Half Duplex, 2: 10Mbps Full Duplex, 3: 100Mbps Half Duplex, 4: 100Mbps Full Duplex"); | 109 | MODULE_PARM_DESC(speed_duplex, "Set device speed and duplex modes, 0: Auto Negotiate, 1: 10Mbps Half Duplex, 2: 10Mbps Full Duplex, 3: 100Mbps Half Duplex, 4: 100Mbps Full Duplex"); |
110 | module_param_array(coalesce, bool, NULL, 0); | 110 | module_param_array(coalesce, bool, NULL, 0); |
111 | MODULE_PARM_DESC(coalesce, "Enable or Disable interrupt coalescing, 1: Enable, 0: Disable"); | 111 | MODULE_PARM_DESC(coalesce, "Enable or Disable interrupt coalescing, 1: Enable, 0: Disable"); |
112 | module_param_array(dynamic_ipg, bool, NULL, 0); | 112 | module_param_array(dynamic_ipg, bool, NULL, 0); |
@@ -396,7 +396,7 @@ static int amd8111e_set_coalesce(struct net_device * dev, enum coal_mode cmod) | |||
396 | event_count = coal_conf->rx_event_count; | 396 | event_count = coal_conf->rx_event_count; |
397 | if( timeout > MAX_TIMEOUT || | 397 | if( timeout > MAX_TIMEOUT || |
398 | event_count > MAX_EVENT_COUNT ) | 398 | event_count > MAX_EVENT_COUNT ) |
399 | return -EINVAL; | 399 | return -EINVAL; |
400 | 400 | ||
401 | timeout = timeout * DELAY_TIMER_CONV; | 401 | timeout = timeout * DELAY_TIMER_CONV; |
402 | writel(VAL0|STINTEN, mmio+INTEN0); | 402 | writel(VAL0|STINTEN, mmio+INTEN0); |
@@ -409,7 +409,7 @@ static int amd8111e_set_coalesce(struct net_device * dev, enum coal_mode cmod) | |||
409 | event_count = coal_conf->tx_event_count; | 409 | event_count = coal_conf->tx_event_count; |
410 | if( timeout > MAX_TIMEOUT || | 410 | if( timeout > MAX_TIMEOUT || |
411 | event_count > MAX_EVENT_COUNT ) | 411 | event_count > MAX_EVENT_COUNT ) |
412 | return -EINVAL; | 412 | return -EINVAL; |
413 | 413 | ||
414 | 414 | ||
415 | timeout = timeout * DELAY_TIMER_CONV; | 415 | timeout = timeout * DELAY_TIMER_CONV; |
@@ -903,18 +903,18 @@ static int amd8111e_read_mib(void __iomem *mmio, u8 MIB_COUNTER) | |||
903 | } | 903 | } |
904 | 904 | ||
905 | /* | 905 | /* |
906 | This function reads the mib registers and returns the hardware statistics. It updates previous internal driver statistics with new values. | 906 | * This function reads the mib registers and returns the hardware statistics. |
907 | */ | 907 | * It updates previous internal driver statistics with new values. |
908 | static struct net_device_stats *amd8111e_get_stats(struct net_device * dev) | 908 | */ |
909 | static struct net_device_stats *amd8111e_get_stats(struct net_device *dev) | ||
909 | { | 910 | { |
910 | struct amd8111e_priv *lp = netdev_priv(dev); | 911 | struct amd8111e_priv *lp = netdev_priv(dev); |
911 | void __iomem *mmio = lp->mmio; | 912 | void __iomem *mmio = lp->mmio; |
912 | unsigned long flags; | 913 | unsigned long flags; |
913 | /* struct net_device_stats *prev_stats = &lp->prev_stats; */ | 914 | struct net_device_stats *new_stats = &dev->stats; |
914 | struct net_device_stats* new_stats = &lp->stats; | ||
915 | 915 | ||
916 | if(!lp->opened) | 916 | if (!lp->opened) |
917 | return &lp->stats; | 917 | return new_stats; |
918 | spin_lock_irqsave (&lp->lock, flags); | 918 | spin_lock_irqsave (&lp->lock, flags); |
919 | 919 | ||
920 | /* stats.rx_packets */ | 920 | /* stats.rx_packets */ |
@@ -1315,7 +1315,7 @@ static netdev_tx_t amd8111e_start_xmit(struct sk_buff *skb, | |||
1315 | lp->tx_ring[tx_index].tx_flags = 0; | 1315 | lp->tx_ring[tx_index].tx_flags = 0; |
1316 | 1316 | ||
1317 | #if AMD8111E_VLAN_TAG_USED | 1317 | #if AMD8111E_VLAN_TAG_USED |
1318 | if((lp->vlgrp != NULL) && vlan_tx_tag_present(skb)){ | 1318 | if (vlan_tx_tag_present(skb)) { |
1319 | lp->tx_ring[tx_index].tag_ctrl_cmd |= | 1319 | lp->tx_ring[tx_index].tag_ctrl_cmd |= |
1320 | cpu_to_le16(TCC_VLAN_INSERT); | 1320 | cpu_to_le16(TCC_VLAN_INSERT); |
1321 | lp->tx_ring[tx_index].tag_ctrl_info = | 1321 | lp->tx_ring[tx_index].tag_ctrl_info = |
@@ -1398,7 +1398,7 @@ static void amd8111e_set_multicast_list(struct net_device *dev) | |||
1398 | mc_filter[1] = mc_filter[0] = 0; | 1398 | mc_filter[1] = mc_filter[0] = 0; |
1399 | lp->options &= ~OPTION_MULTICAST_ENABLE; | 1399 | lp->options &= ~OPTION_MULTICAST_ENABLE; |
1400 | amd8111e_writeq(*(u64*)mc_filter,lp->mmio + LADRF); | 1400 | amd8111e_writeq(*(u64*)mc_filter,lp->mmio + LADRF); |
1401 | /* disable promiscous mode */ | 1401 | /* disable promiscuous mode */ |
1402 | writel(PROM, lp->mmio + CMD2); | 1402 | writel(PROM, lp->mmio + CMD2); |
1403 | return; | 1403 | return; |
1404 | } | 1404 | } |