Merge remote branch 'origin' into secretlab/next-devicetree
Merging in current state of Linus' tree to deal with merge conflicts and build failures in vio.c after merge. Conflicts: drivers/i2c/busses/i2c-cpm.c drivers/i2c/busses/i2c-mpc.c drivers/net/gianfar.c Also fixed up one line in arch/powerpc/kernel/vio.c to use the correct node pointer. Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
This commit is contained in:
@@ -855,7 +855,7 @@ static void happy_meal_timer(unsigned long data)
|
||||
hp->timer_ticks = 0;
|
||||
hp->timer_state = asleep; /* foo on you */
|
||||
break;
|
||||
};
|
||||
}
|
||||
|
||||
if (restart_timer) {
|
||||
hp->happy_timer.expires = jiffies + ((12 * HZ)/10); /* 1.2 sec. */
|
||||
@@ -1488,7 +1488,7 @@ static int happy_meal_init(struct happy_meal *hp)
|
||||
HMD(("external, disable MII, "));
|
||||
hme_write32(hp, bregs + BMAC_XIFCFG, BIGMAC_XCFG_MIIDISAB);
|
||||
break;
|
||||
};
|
||||
}
|
||||
|
||||
if (happy_meal_tcvr_reset(hp, tregs))
|
||||
return -EAGAIN;
|
||||
@@ -1523,13 +1523,13 @@ static int happy_meal_init(struct happy_meal *hp)
|
||||
hme_write32(hp, bregs + BMAC_HTABLE3, 0xffff);
|
||||
} else if ((hp->dev->flags & IFF_PROMISC) == 0) {
|
||||
u16 hash_table[4];
|
||||
struct dev_mc_list *dmi;
|
||||
struct netdev_hw_addr *ha;
|
||||
char *addrs;
|
||||
u32 crc;
|
||||
|
||||
memset(hash_table, 0, sizeof(hash_table));
|
||||
netdev_for_each_mc_addr(dmi, hp->dev) {
|
||||
addrs = dmi->dmi_addr;
|
||||
netdev_for_each_mc_addr(ha, hp->dev) {
|
||||
addrs = ha->addr;
|
||||
|
||||
if (!(*addrs & 1))
|
||||
continue;
|
||||
@@ -1734,7 +1734,7 @@ static void happy_meal_set_initial_advertisement(struct happy_meal *hp)
|
||||
case external:
|
||||
hme_write32(hp, bregs + BMAC_XIFCFG, BIGMAC_XCFG_MIIDISAB);
|
||||
break;
|
||||
};
|
||||
}
|
||||
if (happy_meal_tcvr_reset(hp, tregs))
|
||||
return;
|
||||
|
||||
@@ -2341,8 +2341,6 @@ static netdev_tx_t happy_meal_start_xmit(struct sk_buff *skb,
|
||||
|
||||
spin_unlock_irq(&hp->happy_lock);
|
||||
|
||||
dev->trans_start = jiffies;
|
||||
|
||||
tx_add_log(hp, TXLOG_ACTION_TXMIT, 0);
|
||||
return NETDEV_TX_OK;
|
||||
}
|
||||
@@ -2362,7 +2360,7 @@ static void happy_meal_set_multicast(struct net_device *dev)
|
||||
{
|
||||
struct happy_meal *hp = netdev_priv(dev);
|
||||
void __iomem *bregs = hp->bigmacregs;
|
||||
struct dev_mc_list *dmi;
|
||||
struct netdev_hw_addr *ha;
|
||||
char *addrs;
|
||||
u32 crc;
|
||||
|
||||
@@ -2380,8 +2378,8 @@ static void happy_meal_set_multicast(struct net_device *dev)
|
||||
u16 hash_table[4];
|
||||
|
||||
memset(hash_table, 0, sizeof(hash_table));
|
||||
netdev_for_each_mc_addr(dmi, dev) {
|
||||
addrs = dmi->dmi_addr;
|
||||
netdev_for_each_mc_addr(ha, dev) {
|
||||
addrs = ha->addr;
|
||||
|
||||
if (!(*addrs & 1))
|
||||
continue;
|
||||
@@ -2945,7 +2943,6 @@ static void get_hme_mac_nonsparc(struct pci_dev *pdev, unsigned char *dev_addr)
|
||||
dev_addr[1] = 0x00;
|
||||
dev_addr[2] = 0x20;
|
||||
get_random_bytes(&dev_addr[3], 3);
|
||||
return;
|
||||
}
|
||||
#endif /* !(CONFIG_SPARC) */
|
||||
|
||||
@@ -3004,7 +3001,6 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev,
|
||||
dev->base_addr = (long) pdev;
|
||||
|
||||
hp = netdev_priv(dev);
|
||||
memset(hp, 0, sizeof(*hp));
|
||||
|
||||
hp->happy_dev = pdev;
|
||||
hp->dma_dev = &pdev->dev;
|
||||
|
Reference in New Issue
Block a user