From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from vps0.lunn.ch (vps0.lunn.ch [156.67.10.101]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A72F2248883; Tue, 11 Nov 2025 01:03:05 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=156.67.10.101 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762822988; cv=none; b=rto9HRIg0i+xBoAFMMTOV29szEpGheER2PjMVv/Xf4j50aS20uyP+duHiAduhxsjVpA39afAb27OMW1UZJDksLf3qOWKfhhXTalOyMhwklobhExxy3oVM+zacA/W4n1HXddW7w8cDbNyoYD05A/tvj4pH6zwYwfI7pO9s5YTllw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762822988; c=relaxed/simple; bh=9Fs0oNkjA7wtiD5FJEKVmR+8bAGbBjg3y9Ep63XAvEQ=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=iD8rmJp294dnastfybTfWWPysU/Nfue/i0kwH0Fxk5uBTe0x117pLKT6JcqERHu1Fpx3GHc2F5mysnD0e2t2ef2e3WuIDY/vDcCKVTDSiQetDTaYL5CjgH3GZiNrVlcW5DcbPPn6wwC5FOZr3uithIgt/PDZwD7jXhBAIV2tZcE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lunn.ch; spf=pass smtp.mailfrom=lunn.ch; dkim=pass (1024-bit key) header.d=lunn.ch header.i=@lunn.ch header.b=O1I9dYGe; arc=none smtp.client-ip=156.67.10.101 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lunn.ch Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=lunn.ch Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=lunn.ch header.i=@lunn.ch header.b="O1I9dYGe" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lunn.ch; s=20171124; h=In-Reply-To:Content-Disposition:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:From:Sender:Reply-To:Subject: Date:Message-ID:To:Cc:MIME-Version:Content-Type:Content-Transfer-Encoding: Content-ID:Content-Description:Content-Disposition:In-Reply-To:References; bh=HnN8PEoLNm7nZNzwRVrJ7gG6TkHaHIjcUK5pdx4q6Bw=; b=O1I9dYGeBlruCci9+jd/1lRD1G OCyGUGO6d15317LY5ZCRCBqHVE9QlmomLxwEFPF32cDSfiWLiYPN9OGV5C8okHHN+2+hLOVJJdBah 8v1nwRFTyqU2GDJX0n+cSEoa4+Gmkg2Hb/SDGVmfkK3awiI7mrpUXuptW5UxKqap+irg=; Received: from andrew by vps0.lunn.ch with local (Exim 4.94.2) (envelope-from ) id 1vIcma-00DZbX-L8; Tue, 11 Nov 2025 02:02:52 +0100 Date: Tue, 11 Nov 2025 02:02:52 +0100 From: Andrew Lunn To: Romain Gantois Cc: Heiner Kallweit , Russell King , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Maxime Chevallier , Thomas Petazzoni , netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH net-next v2 1/3] net: phy: dp83869: Restart PHY when configuring mode Message-ID: References: <20251110-sfp-1000basex-v2-0-dd5e8c1f5652@bootlin.com> <20251110-sfp-1000basex-v2-1-dd5e8c1f5652@bootlin.com> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20251110-sfp-1000basex-v2-1-dd5e8c1f5652@bootlin.com> On Mon, Nov 10, 2025 at 10:24:53AM +0100, Romain Gantois wrote: > The DP83869 PHY requires a software restart when the OP_MODE is changed. > > Add this restart in dp83869_configure_mode(). > > Signed-off-by: Romain Gantois Reviewed-by: Andrew Lunn Andrew