Hi all, Today's linux-next merge of the net-next tree got a conflict in: drivers/net/phy/realtek.c between commit: bbc4d71d6354 ("net: phy: realtek: fix rtl8211e rx/tx delay config") from the net tree and commit: 66e22932eb79 ("net: phy: realtek: enable ALDPS to save power for RTL8211F") from the net-next tree. I fixed it up (see below) and can carry the fix as necessary. This is now fixed as far as linux-next is concerned, but any non trivial conflicts should be mentioned to your upstream maintainer when your tree is submitted for merging. You may also want to consider cooperating with the maintainer of the conflicting tree to minimise any particularly complex conflicts. -- Cheers, Stephen Rothwell diff --cc drivers/net/phy/realtek.c index 0f0960971800,4bf54cded48a..000000000000 --- a/drivers/net/phy/realtek.c +++ b/drivers/net/phy/realtek.c @@@ -31,9 -33,13 +32,13 @@@ #define RTL8211F_TX_DELAY BIT(8) #define RTL8211F_RX_DELAY BIT(3) + #define RTL8211F_ALDPS_PLL_OFF BIT(1) + #define RTL8211F_ALDPS_ENABLE BIT(2) + #define RTL8211F_ALDPS_XTAL_OFF BIT(12) + -#define RTL8211E_TX_DELAY BIT(1) -#define RTL8211E_RX_DELAY BIT(2) -#define RTL8211E_MODE_MII_GMII BIT(3) +#define RTL8211E_CTRL_DELAY BIT(13) +#define RTL8211E_TX_DELAY BIT(12) +#define RTL8211E_RX_DELAY BIT(11) #define RTL8201F_ISR 0x1e #define RTL8201F_IER 0x13