From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C6EA5EB64DA for ; Fri, 14 Jul 2023 13:17:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235491AbjGNNRB (ORCPT ); Fri, 14 Jul 2023 09:17:01 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34478 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233638AbjGNNQ7 (ORCPT ); Fri, 14 Jul 2023 09:16:59 -0400 Received: from vps0.lunn.ch (vps0.lunn.ch [156.67.10.101]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id ACAAF30DE; Fri, 14 Jul 2023 06:16:52 -0700 (PDT) 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=kY9kWgPRsbUG2PwMOsb8zyln8FszRPF2CwtQS5KEw50=; b=ZBNqoO4508QGdlm4xwIwriY4I+ yBv9AnZXqMeuoerpvlqk7FfUni3J/C21vKpvgbytPD8aIKyqFa5kL9kpf7SV0hzEy8H7e886FAbS5 +R53T+aPb+b4zOhLrkM5y6cqWUQ6ZZvaSI5EWcYho+r2LYbm1wMRJ75+AbPr2EHpYZUY=; Received: from andrew by vps0.lunn.ch with local (Exim 4.94.2) (envelope-from ) id 1qKIey-001M4n-DH; Fri, 14 Jul 2023 15:16:36 +0200 Date: Fri, 14 Jul 2023 15:16:36 +0200 From: Andrew Lunn To: Luo Jie Cc: hkallweit1@gmail.com, linux@armlinux.org.uk, davem@davemloft.net, edumazet@google.com, kuba@kernel.org, pabeni@redhat.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 3/6] net: phy: at803x: enable qca8081 slave seed conditionally Message-ID: References: <20230714063136.21368-1-quic_luoj@quicinc.com> <20230714063136.21368-4-quic_luoj@quicinc.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230714063136.21368-4-quic_luoj@quicinc.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Jul 14, 2023 at 02:31:33PM +0800, Luo Jie wrote: > qca8081 is the single port PHY, the slave prefer mode is used > by default. > > if the phy master perfer mode is configured, the slave seed > configuration should not be enabled, since the slave seed > enablement ignores the master/slave perfer configuration, > which is not expected. > > disable slave seed if the master mode is preferred. > > Signed-off-by: Luo Jie Reviewed-by: Andrew Lunn Andrew