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 A7D07C6FD18 for ; Wed, 29 Mar 2023 16:38:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230140AbjC2QiW (ORCPT ); Wed, 29 Mar 2023 12:38:22 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44078 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229926AbjC2QiU (ORCPT ); Wed, 29 Mar 2023 12:38:20 -0400 Received: from vps0.lunn.ch (vps0.lunn.ch [156.67.10.101]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 57E7ADB; Wed, 29 Mar 2023 09:38:19 -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=nqb3eOXKREvLW9BAFYXjCeVhhXMvbL63kC9zEhZdZEQ=; b=rPat5mwvB49J7zctdFuplYqikj uAZJOanlxahOez2qiAOXwTugc5ITra60zC3mK6Uq0b4WjWjNEEcpR6Wa6wFCo9R7wq+cakq7zokLz BZC4R9JLa23qoPLCL8avs9c2uBwOBIyNebwD/+VW6IKwlVcgq1+HMxlXseM3GuOiTCz0=; Received: from andrew by vps0.lunn.ch with local (Exim 4.94.2) (envelope-from ) id 1phYoQ-008mcU-RO; Wed, 29 Mar 2023 18:38:14 +0200 Date: Wed, 29 Mar 2023 18:38:14 +0200 From: Andrew Lunn To: Daniel Golle Cc: netdev@vger.kernel.org, linux-mediatek@lists.infradead.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Florian Fainelli , Vladimir Oltean , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Matthias Brugger , AngeloGioacchino Del Regno , Sean Wang , Landen Chao , DENG Qingfang , Philipp Zabel , Sam Shih , Lorenzo Bianconi , John Crispin , Felix Fietkau Subject: Re: [RFC PATCH net-next v3 10/15] net: dsa: mt7530: introduce separate MDIO driver Message-ID: <868f3eae-cca6-4234-95aa-e21c021e18a2@lunn.ch> References: <2bef9ef442261e26d4d933f101f4a25c0f3aad2a.1680105013.git.daniel@makrotopia.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <2bef9ef442261e26d4d933f101f4a25c0f3aad2a.1680105013.git.daniel@makrotopia.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Mar 29, 2023 at 04:59:30PM +0100, Daniel Golle wrote: > Split MT7530 switch driver into a common part and a part specific > for MDIO connected switches and multi-chip modules. > Move MDIO-specific functions to newly introduced mt7530-mdio.c while > keeping the common parts in mt7530.c. > In order to maintain compatibility with existing kernel configurations > keep CONFIG_NET_DSA_MT7530 as symbol to select the MDIO-specific driver > while the newly introduced hidden symbol CONFIG_NET_DSA_MT7530_COMMON > is selected by CONFIG_NET_DSA_MT7530. > > Signed-off-by: Daniel Golle Reviewed-by: Andrew Lunn Andrew