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>
此提交包含在:
@@ -602,7 +602,6 @@ static int qe_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
qep->tx_new = NEXT_TX(entry);
|
||||
|
||||
/* Get it going. */
|
||||
dev->trans_start = jiffies;
|
||||
sbus_writel(CREG_CTRL_TWAKEUP, qep->qcregs + CREG_CTRL);
|
||||
|
||||
dev->stats.tx_packets++;
|
||||
@@ -627,7 +626,7 @@ static int qe_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
static void qe_set_multicast(struct net_device *dev)
|
||||
{
|
||||
struct sunqe *qep = netdev_priv(dev);
|
||||
struct dev_mc_list *dmi;
|
||||
struct netdev_hw_addr *ha;
|
||||
u8 new_mconfig = qep->mconfig;
|
||||
char *addrs;
|
||||
int i;
|
||||
@@ -651,8 +650,8 @@ static void qe_set_multicast(struct net_device *dev)
|
||||
u8 *hbytes = (unsigned char *) &hash_table[0];
|
||||
|
||||
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;
|
||||
|
新增問題並參考
封鎖使用者