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 5E46D1EF943; Thu, 24 Oct 2024 19:56:56 +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=1729799818; cv=none; b=bP9IR2bVbyYQO2J1isgcYbasGTgReKdmxaFn4xuYQE6mGmzwnBCOvCXe7Y8uQQQJ0GhL1ffNtH+/vfXJszej1kE4WH8UQ/oXFTZBq9IaSUajle7XOyYSKMOx4z13K8D/3o7syAa+hQxbIB8Qrki3anAoQ4XSxe+BFnQteLf/TuA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1729799818; c=relaxed/simple; bh=IJgSDB5gz+z3pu9yNDYuHeEngHai0OvQW7Kl+ZnGflo=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=CGUr1jiDIg5v80YTA2aBFlVMc+b34192sT3f8YN5vdVPD23jnFgyzhw2LV2SMtbnNvk6rlv+pwoiPWEp16N8LsPYr3Izky5wF0c1A236gymyZ787Xsd4/Fow+zJZAriBAzrAAQbKouSBspHRE/TUGmj4j5RtshaUmDy5L6inltA= 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=cmvnG+5K; 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="cmvnG+5K" 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=I8RKQMPVCCwHfjIyciwEDSITWWzYTZ0b95h5M3mbIRM=; b=cmvnG+5KFV3XnIBOzGhVZn7vDA zJGvdE4sNr9MZvBB5XjTcweYzevcspPQZkxxPuHBh1aJNuBGphsqjiniXkOt0H5foTxy9/YU83Q5j n5czdAUArWQQmT6ocsD/RB6zEkrSMZy4b/ErjSUaGthxaS5qAglngD0/IWgeVKAyODa4=; Received: from andrew by vps0.lunn.ch with local (Exim 4.94.2) (envelope-from ) id 1t43wx-00BAjw-AS; Thu, 24 Oct 2024 21:56:51 +0200 Date: Thu, 24 Oct 2024 21:56:51 +0200 From: Andrew Lunn To: Erik Schumacher Cc: "hkallweit1@gmail.com" , "linux@armlinux.org.uk" , "davem@davemloft.net" , "linux-kernel@vger.kernel.org" , "netdev@vger.kernel.org" , "kuba@kernel.org" , "edumazet@google.com" , "jeremie.dautheribes@bootlin.com" , "pabeni@redhat.com" Subject: Re: [PATCH net-next] net: phy: dp83822: Configure RMII mode on DP83825 devices Message-ID: <62f1a24a-3922-47fe-af73-e7cc79d67aab@lunn.ch> References: Precedence: bulk X-Mailing-List: linux-kernel@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: On Thu, Oct 24, 2024 at 01:24:23PM +0000, Erik Schumacher wrote: > Like the DP83826, the DP83825 can also be configured as an RMII master or > slave via a control register. The existing function responsible for this > configuration is renamed to a general dp8382x function. The DP83825 only > supports RMII so nothing more needs to be configured. > > With this change, the dp83822_driver list is reorganized according to the > device name. > > Signed-off-by: Erik Schumacher Reviewed-by: Andrew Lunn Andrew