Received: by 2002:a05:6a10:af89:0:0:0:0 with SMTP id iu9csp2972969pxb; Mon, 17 Jan 2022 09:14:40 -0800 (PST) X-Google-Smtp-Source: ABdhPJyyIWU9pmjV50MwLgCDb3sER/NpWSGsWR4CpRONZs1iMEnBiGrC12G3NKdyLWQmuSEP3hA4 X-Received: by 2002:a17:90b:4b83:: with SMTP id lr3mr26849066pjb.59.1642439679825; Mon, 17 Jan 2022 09:14:39 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1642439679; cv=none; d=google.com; s=arc-20160816; b=Vjrv0aBLRq1TgHVH6LFpPErYQJB2jMHjxQjDQtu3uV0h43eWpLmr4fFzANHvCWArSF idDm7qLwyIyuzFPG4rH83Ow/sElE26HIM+ZtnE47Sj0s2vfNjioI7O8drk2+FgPisKcg LwyOZbnI/X7+wXoZhH60HqCry8igx/W4cc8GKWG4SJg3i/r1iO4E4AXbJWzDj2q1HfWS iHFVK/UBskmzURYHEJXzZMaFe9ZM9skj6cL+1IhTvRNLuXKuPpk3gn7mq/+GvJWqXTUR ylo7x1v5eVoP1v3UuZIh/FOIyZO55q904CGiDlfyxfj/CHhipcQjSszQz0gcrbjWLJT3 UUmw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=jbH2aqNNS2Gd/vHTFTjzbU7h15yZhIH2xfV7lilEbHQ=; b=qZKHemqXjedHcPd/yFZihM60w8LAiW/6OxieJCtxTf5clqXgaL1k7vniZphmBtYhLt 9ClK02j1IdLN03TK36gVZ+UgNbkZ4WetAuem9QGldquS06JoBULRP1+5VJUrcIPVAsnQ FStlOSB/NaGo6VOJO9ZB4cqNU1ou4xPxcuICYDbE2CZT0gY+9EHPs4vvOw8BDfYfGkGF NOR4Of9/MyFbeH0nabyJgupFAobVcTh3XQrpXIt17SE5tPmbg7pdsRVTDqaNn1XaO3FM AbI2LHgInKXR8upGiib3u+kiG3m3O8QWmeSX3DKXPLl48jFxd0rZkhtIzlY5C15BBz4z mAFA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-wireless-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-wireless-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id x74si10089467pgx.188.2022.01.17.09.14.31; Mon, 17 Jan 2022 09:14:39 -0800 (PST) Received-SPF: pass (google.com: domain of linux-wireless-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-wireless-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-wireless-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239339AbiAQLzI (ORCPT + 70 others); Mon, 17 Jan 2022 06:55:08 -0500 Received: from relay12.mail.gandi.net ([217.70.178.232]:46429 "EHLO relay12.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S239278AbiAQLzF (ORCPT ); Mon, 17 Jan 2022 06:55:05 -0500 Received: (Authenticated sender: miquel.raynal@bootlin.com) by relay12.mail.gandi.net (Postfix) with ESMTPSA id E1BD9200008; Mon, 17 Jan 2022 11:55:02 +0000 (UTC) From: Miquel Raynal To: Alexander Aring , Stefan Schmidt , linux-wpan@vger.kernel.org Cc: netdev@vger.kernel.org, linux-wireless@vger.kernel.org, David Girault , Romuald Despres , Frederic Blain , Nicolas Schodet , Michael Hennerich , Jakub Kicinski , Varka Bhadram , Xue Liu , Alan Ott , Thomas Petazzoni , Miquel Raynal Subject: [PATCH v3 11/41] net: ieee802154: Move IEEE 802.15.4 Kconfig main entry Date: Mon, 17 Jan 2022 12:54:10 +0100 Message-Id: <20220117115440.60296-12-miquel.raynal@bootlin.com> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20220117115440.60296-1-miquel.raynal@bootlin.com> References: <20220117115440.60296-1-miquel.raynal@bootlin.com> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org From: David Girault It makes certainly more sense to have all the low-range wireless protocols such as Bluetooth, IEEE 802.11 (WiFi) and IEEE 802.15.4 together, so let's move the main IEEE 802.15.4 stack Kconfig entry at a better location. Signed-off-by: David Girault [miquel.raynal@bootlin.com: Isolate this change from a bigger commit and rewrite the commit message.] Signed-off-by: Miquel Raynal --- net/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/Kconfig b/net/Kconfig index 8a1f9d0287de..0da89d09ffa6 100644 --- a/net/Kconfig +++ b/net/Kconfig @@ -228,7 +228,6 @@ source "net/x25/Kconfig" source "net/lapb/Kconfig" source "net/phonet/Kconfig" source "net/6lowpan/Kconfig" -source "net/ieee802154/Kconfig" source "net/mac802154/Kconfig" source "net/sched/Kconfig" source "net/dcb/Kconfig" @@ -380,6 +379,7 @@ source "net/mac80211/Kconfig" endif # WIRELESS +source "net/ieee802154/Kconfig" source "net/rfkill/Kconfig" source "net/9p/Kconfig" source "net/caif/Kconfig" -- 2.27.0