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 2D912ECAAD1 for ; Sat, 27 Aug 2022 18:48:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229849AbiH0Ssy (ORCPT ); Sat, 27 Aug 2022 14:48:54 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41088 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229694AbiH0Ssx (ORCPT ); Sat, 27 Aug 2022 14:48:53 -0400 Received: from vps0.lunn.ch (vps0.lunn.ch [185.16.172.187]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A7CAD32EE1; Sat, 27 Aug 2022 11:48: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=E6+R4CiREVdZZGp49m1jDKnyxojCvYVQuhqq6nJ2T3I=; b=DQ6Bdp3hBlMe2ZhcWxMBoL/OQr bO33CIq9rWj7LKxUuhrYU262yJ3Z0Pichm5lTAKGRBtbzdwMeB2mF6dpYbkJTqVjMQGAanJYUrKll ztSN3xepAMyzLgGZ0kC1Iu4ad08ydC+A+xY8fX13BODJCoFOpl3N6MoqCne+CXxwXxcs=; Received: from andrew by vps0.lunn.ch with local (Exim 4.94.2) (envelope-from ) id 1oS0rP-00EnSF-Uy; Sat, 27 Aug 2022 20:48:47 +0200 Date: Sat, 27 Aug 2022 20:48:47 +0200 From: Andrew Lunn To: Maxime Chevallier Cc: davem@davemloft.net, Rob Herring , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, thomas.petazzoni@bootlin.com, Florian Fainelli , Heiner Kallweit , Russell King , linux-arm-kernel@lists.infradead.org, Vladimir Oltean , Luka Perkov , Robert Marko Subject: Re: [PATCH net-next v3 2/5] net: dsa: add out-of-band tagging protocol Message-ID: References: <20220826154650.615582-1-maxime.chevallier@bootlin.com> <20220826154650.615582-3-maxime.chevallier@bootlin.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220826154650.615582-3-maxime.chevallier@bootlin.com> Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org > diff --git a/net/dsa/Kconfig b/net/dsa/Kconfig > index 3eef72ce99a4..3e095041dcca 100644 > --- a/net/dsa/Kconfig > +++ b/net/dsa/Kconfig > @@ -57,6 +57,13 @@ config NET_DSA_TAG_HELLCREEK > Say Y or M if you want to enable support for tagging frames > for the Hirschmann Hellcreek TSN switches. > > +config NET_DSA_TAG_OOB > + tristate "Tag driver for Out-of-band tagging drivers" > + help > + Say Y or M if you want to enable support for tagging out-of-band. In > + that case, the MAC driver becomes responsible for sending the tag to > + the switch, outside the inband data. > + This file is sorted by the tristate text. So this new entry should come after NET_DSA_TAG_OCELOT_8021Q > @@ -9,6 +9,7 @@ obj-$(CONFIG_NET_DSA_TAG_BRCM_COMMON) += tag_brcm.o > obj-$(CONFIG_NET_DSA_TAG_DSA_COMMON) += tag_dsa.o > obj-$(CONFIG_NET_DSA_TAG_GSWIP) += tag_gswip.o > obj-$(CONFIG_NET_DSA_TAG_HELLCREEK) += tag_hellcreek.o > +obj-$(CONFIG_NET_DSA_TAG_OOB) += tag_oob.o > obj-$(CONFIG_NET_DSA_TAG_KSZ) += tag_ksz.o > obj-$(CONFIG_NET_DSA_TAG_LAN9303) += tag_lan9303.o > obj-$(CONFIG_NET_DSA_TAG_MTK) += tag_mtk.o And this should also be after NET_DSA_TAG_OCELOT_8021Q. Andrew