Hi all, Today's linux-next merge of the net tree got a conflict in drivers/net/via-velocity.c between commit bcbe53682f65330bdd9ad7eed9575d2ff536353a ("via-velocity: Fix FLOW_CNTL_TX_RX handling in set_mii_flow_control()") from Linus' tree and commit 3a7f8681ffb27bcc540fb74cda15e39c9395737b ("via-velocity: remove private #define") from the net tree. I fixed it up (see below) and can carry the fix for a while. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx diff --cc drivers/net/via-velocity.c index bc278d4,078903f..0000000 --- a/drivers/net/via-velocity.c +++ b/drivers/net/via-velocity.c @@@ -811,8 -811,8 +811,8 @@@ static void set_mii_flow_control(struc break; case FLOW_CNTL_TX_RX: - MII_REG_BITS_ON(ANAR_PAUSE, MII_REG_ANAR, vptr->mac_regs); - MII_REG_BITS_OFF(ANAR_ASMDIR, MII_REG_ANAR, vptr->mac_regs); + MII_REG_BITS_ON(ADVERTISE_PAUSE_CAP, MII_ADVERTISE, vptr->mac_regs); - MII_REG_BITS_ON(ADVERTISE_PAUSE_ASYM, MII_ADVERTISE, vptr->mac_regs); ++ MII_REG_BITS_OFF(ADVERTISE_PAUSE_ASYM, MII_ADVERTISE, vptr->mac_regs); break; case FLOW_CNTL_DISABLE: -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html