[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <013a01db3b26$2f719310$8e54b930$@trustnetic.com>
Date: Wed, 20 Nov 2024 16:28:32 +0800
From: Jiawen Wu <jiawenwu@...stnetic.com>
To: "'Paolo Abeni'" <pabeni@...hat.com>,
"'Russell King'" <linux@...linux.org.uk>
Cc: <netdev@...r.kernel.org>
Subject: RE: net vs net-next conflicts while cross merging
On Tue, No 19, 2024 9:15 PM, Paolo Abeni wrote:
> Hi,
>
> I just cross-merged net into net-next for the 6.13 PR. There was 2
> conflicts:
>
> include/linux/phy.h
> 41ffcd95015f net: phy: fix phylib's dual eee_enabled
> 21aa69e708b net: phy: convert eee_broken_modes to a linkmode bitmap
>
> drivers/net/ethernet/wangxun/txgbe/txgbe_phy.c
> 2160428bcb20 net: txgbe: fix null pointer to pcs
> 2160428bcb20 net: txgbe: remove GPIO interrupt controller
Hi,
I don't find what's the conflict here. Do you mean these two:
2160428bcb20 ("net: txgbe: fix null pointer to pcs")
155c499ffd1d ("net: wangxun: txgbe: use phylink_pcs internally")
If this is the case, it should be resolved as follow:
static struct phylink_pcs *txgbe_phylink_mac_select(struct phylink_config *config,
phy_interface_t interface)
{
struct wx *wx = phylink_to_wx(config);
struct txgbe *txgbe = wx->priv;
if (wx->media_type != sp_media_copper)
return txgbe->pcs;
return NULL;
}
Thanks!
Powered by blists - more mailing lists