Received: by 2002:a05:6a10:af89:0:0:0:0 with SMTP id iu9csp1229047pxb; Fri, 21 Jan 2022 12:50:26 -0800 (PST) X-Google-Smtp-Source: ABdhPJwTGpxiOgTXUQI+gB5ypjR4VBS02GrKYq01//nHA/WMacOWHP6W7JyJT8oEMM1bfqxMwsJ/ X-Received: by 2002:a17:90b:1c87:: with SMTP id oo7mr2463687pjb.114.1642798225980; Fri, 21 Jan 2022 12:50:25 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1642798225; cv=none; d=google.com; s=arc-20160816; b=Y6TorqPdKLuWv0mXkHtC99MMmlgFW+3FnB3rUpofecm20GqAFHZcyeU4lutHXTPEtl h8Mdp2Fvd0kOIxBFBjQk9mZeAgJtaHYyIDvIJExeHT/mm4jddvUgD1DLc+ujp74Ujgt3 i/WnWZgHq9KFtHzsC56hPGQvsNK8PyO1HfHwwtXB4RAKriDGt6fSpke93sMs3ceokSwT GTAENUJW4P6HB4PjuBdGv4jdGSF4fabWmo7pMdUujLmSm0OEJpNDGnmVAWI7Tud+aIMK 9V28I2kvBtuUq34MmwAurRAOc1+zfEte/4YudDkY5rNTBv27Lf4r4iVoGsV0hxqujZU1 i4fQ== 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=gOmSe4aQexRnMwFMFnihi4fo2MPPLju7spcvBP1EGaTsgRRmrOMf6tsizTrz2h6GY+ fUcCjOlHPiL6CISDW0PQO54Aor3grMNemtpd3+5PZGzuml/Ifz1jhp4Md84q5o2irCh9 MmgYgzpAmNTwqfK2A/FlaITboyqxdyNb+qzIfYZsLQ4hl1rOhezV64of2C1hFuTi9//F cprXqfcX4F6WipHgtZ7T79SpYKhvWc/ciIYZx0TPgG1Of+8qE31ciQ00v04kSAN2EHhS YTnS0rI8DU9z4+eGfcXBYxejpPMzASouErnrxS0kQNDWeQ87cMwR/RjyDAr21smATaaw zhWA== 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 d4si7515060pfj.223.2022.01.21.12.50.17; Fri, 21 Jan 2022 12:50:25 -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 S1345539AbiATAn5 (ORCPT + 70 others); Wed, 19 Jan 2022 19:43:57 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43838 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1345374AbiATAn4 (ORCPT ); Wed, 19 Jan 2022 19:43:56 -0500 Received: from relay7-d.mail.gandi.net (relay7-d.mail.gandi.net [IPv6:2001:4b98:dc4:8::227]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 183CDC061574; Wed, 19 Jan 2022 16:43:54 -0800 (PST) Received: (Authenticated sender: miquel.raynal@bootlin.com) by mail.gandi.net (Postfix) with ESMTPSA id 6C3E120005; Thu, 20 Jan 2022 00:43:52 +0000 (UTC) From: Miquel Raynal To: Alexander Aring , Stefan Schmidt , linux-wpan@vger.kernel.org Cc: "David S. Miller" , Jakub Kicinski , netdev@vger.kernel.org, linux-wireless@vger.kernel.org, David Girault , Romuald Despres , Frederic Blain , Nicolas Schodet , Thomas Petazzoni , Miquel Raynal Subject: [wpan-next 1/4] net: ieee802154: Move IEEE 802.15.4 Kconfig main entry Date: Thu, 20 Jan 2022 01:43:47 +0100 Message-Id: <20220120004350.308866-2-miquel.raynal@bootlin.com> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20220120004350.308866-1-miquel.raynal@bootlin.com> References: <20220120004350.308866-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