Merge branch 'upstream-davem' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6

+5 -8
+2 -3
drivers/net/forcedeth.c
··· 2112 2113 np->tx_pkts_in_progress--; 2114 if (np->tx_change_owner) { 2115 - __le32 flaglen = le32_to_cpu(np->tx_change_owner->first_tx_desc->flaglen); 2116 - flaglen |= NV_TX2_VALID; 2117 - np->tx_change_owner->first_tx_desc->flaglen = cpu_to_le32(flaglen); 2118 np->tx_pkts_in_progress++; 2119 2120 np->tx_change_owner = np->tx_change_owner->next_tx_ctx;
··· 2112 2113 np->tx_pkts_in_progress--; 2114 if (np->tx_change_owner) { 2115 + np->tx_change_owner->first_tx_desc->flaglen |= 2116 + cpu_to_le32(NV_TX2_VALID); 2117 np->tx_pkts_in_progress++; 2118 2119 np->tx_change_owner = np->tx_change_owner->next_tx_ctx;
-2
drivers/net/phy/marvell.c
··· 211 } 212 213 if (phydev->interface == PHY_INTERFACE_MODE_SGMII) { 214 - int temp; 215 - 216 temp = phy_read(phydev, MII_M1111_PHY_EXT_SR); 217 if (temp < 0) 218 return temp;
··· 211 } 212 213 if (phydev->interface == PHY_INTERFACE_MODE_SGMII) { 214 temp = phy_read(phydev, MII_M1111_PHY_EXT_SR); 215 if (temp < 0) 216 return temp;
+3 -3
drivers/net/tokenring/olympic.c
··· 117 * Official releases will only have an a.b.c version number format. 118 */ 119 120 - static char version[] __devinitdata = 121 "Olympic.c v1.0.5 6/04/02 - Peter De Schrijver & Mike Phillips" ; 122 123 static char *open_maj_error[] = {"No error", "Lobe Media Test", "Physical Insertion", ··· 290 return i; 291 } 292 293 - static int __devinit olympic_init(struct net_device *dev) 294 { 295 struct olympic_private *olympic_priv; 296 u8 __iomem *olympic_mmio, *init_srb,*adapter_addr; ··· 434 435 } 436 437 - static int __devinit olympic_open(struct net_device *dev) 438 { 439 struct olympic_private *olympic_priv=netdev_priv(dev); 440 u8 __iomem *olympic_mmio=olympic_priv->olympic_mmio,*init_srb;
··· 117 * Official releases will only have an a.b.c version number format. 118 */ 119 120 + static char version[] = 121 "Olympic.c v1.0.5 6/04/02 - Peter De Schrijver & Mike Phillips" ; 122 123 static char *open_maj_error[] = {"No error", "Lobe Media Test", "Physical Insertion", ··· 290 return i; 291 } 292 293 + static int olympic_init(struct net_device *dev) 294 { 295 struct olympic_private *olympic_priv; 296 u8 __iomem *olympic_mmio, *init_srb,*adapter_addr; ··· 434 435 } 436 437 + static int olympic_open(struct net_device *dev) 438 { 439 struct olympic_private *olympic_priv=netdev_priv(dev); 440 u8 __iomem *olympic_mmio=olympic_priv->olympic_mmio,*init_srb;