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 X-Spam-Level: X-Spam-Status: No, score=-10.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C18AAC433E0 for ; Fri, 26 Jun 2020 17:28:06 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 9F74B20663 for ; Fri, 26 Jun 2020 17:28:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1593192486; bh=bDndzC9jDQThqqBGeYRpo0RMxVJ2kLEypnV1D1ox2Gc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=RjRdEJW7ZOrnFGDpKjpumzpka44sb/fZw8QCbYeACaL2N0Af/t3uCryRS9lgPuaWi w6d/Se4XawKpV9KvzcG350NyTtz17K15xEqle66n0oydUTSvxj772TkDcFwDrSC/ts HHrHEmUaZ/OtjXgHgBYRe4NIqyNihfnsNqZtF50I= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725939AbgFZR2E (ORCPT ); Fri, 26 Jun 2020 13:28:04 -0400 Received: from mail.kernel.org ([198.145.29.99]:42480 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726762AbgFZR2A (ORCPT ); Fri, 26 Jun 2020 13:28:00 -0400 Received: from kicinski-fedora-PC1C0HJN.thefacebook.com (unknown [163.114.132.4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 0E148212CC; Fri, 26 Jun 2020 17:28:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1593192480; bh=bDndzC9jDQThqqBGeYRpo0RMxVJ2kLEypnV1D1ox2Gc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=YZqoCxfHsVil2N+Jy/zCg9DVDj1rl8GML7grI9B7347NGpqY6zwNQBl0dd7Y7Gv5P +U5vHKVXMZysbBnhi7ppL//+6n1uWls8m7TWvPxPLHsaqjDMyW73GQJ60iI8zz8IAe 4Mjr/o+9qI5/zAu4gjynEJteRnwaJbWnha9Ou72I= From: Jakub Kicinski To: davem@davemloft.net Cc: netdev@vger.kernel.org, Jakub Kicinski Subject: [PATCH net-next 6/8] docs: networking: move AppleTalk / LocalTalk drivers to the hw driver section Date: Fri, 26 Jun 2020 10:27:29 -0700 Message-Id: <20200626172731.280133-7-kuba@kernel.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200626172731.280133-1-kuba@kernel.org> References: <20200626172731.280133-1-kuba@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Move docs for cops and ltpc under device_drivers/appletalk. Signed-off-by: Jakub Kicinski --- .../{ => device_drivers/appletalk}/cops.rst | 0 .../device_drivers/appletalk/index.rst | 19 +++++++++++++++++++ .../{ => device_drivers/appletalk}/ltpc.rst | 0 .../networking/device_drivers/index.rst | 1 + Documentation/networking/index.rst | 2 -- drivers/net/appletalk/Kconfig | 3 ++- 6 files changed, 22 insertions(+), 3 deletions(-) rename Documentation/networking/{ => device_drivers/appletalk}/cops.rst (100%) create mode 100644 Documentation/networking/device_drivers/appletalk/index.rst rename Documentation/networking/{ => device_drivers/appletalk}/ltpc.rst (100%) diff --git a/Documentation/networking/cops.rst b/Documentation/networking/device_drivers/appletalk/cops.rst similarity index 100% rename from Documentation/networking/cops.rst rename to Documentation/networking/device_drivers/appletalk/cops.rst diff --git a/Documentation/networking/device_drivers/appletalk/index.rst b/Documentation/networking/device_drivers/appletalk/index.rst new file mode 100644 index 000000000000..de7507f02037 --- /dev/null +++ b/Documentation/networking/device_drivers/appletalk/index.rst @@ -0,0 +1,19 @@ +.. SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) + +AppleTalk Device Drivers +======================== + +Contents: + +.. toctree:: + :maxdepth: 2 + + cops + ltpc + +.. only:: subproject and html + + Indices + ======= + + * :ref:`genindex` diff --git a/Documentation/networking/ltpc.rst b/Documentation/networking/device_drivers/appletalk/ltpc.rst similarity index 100% rename from Documentation/networking/ltpc.rst rename to Documentation/networking/device_drivers/appletalk/ltpc.rst diff --git a/Documentation/networking/device_drivers/index.rst b/Documentation/networking/device_drivers/index.rst index 5497e3ae1ca9..3995e2179aa0 100644 --- a/Documentation/networking/device_drivers/index.rst +++ b/Documentation/networking/device_drivers/index.rst @@ -8,6 +8,7 @@ Hardware Device Drivers .. toctree:: :maxdepth: 2 + appletalk/index cable/index cellular/index ethernet/index diff --git a/Documentation/networking/index.rst b/Documentation/networking/index.rst index 9bc8ecc79d94..eb616ac48094 100644 --- a/Documentation/networking/index.rst +++ b/Documentation/networking/index.rst @@ -44,7 +44,6 @@ Linux Networking Documentation ax25 bonding cdc_mbim - cops cxacru dccp dctcp @@ -73,7 +72,6 @@ Linux Networking Documentation kcm l2tp lapb-module - ltpc mac80211-injection mpls-sysctl multiqueue diff --git a/drivers/net/appletalk/Kconfig b/drivers/net/appletalk/Kconfig index 09f94d4b14e2..d4f22a2e5be4 100644 --- a/drivers/net/appletalk/Kconfig +++ b/drivers/net/appletalk/Kconfig @@ -59,7 +59,8 @@ config COPS package. This driver is experimental, which means that it may not work. This driver will only work if you choose "AppleTalk DDP" networking support, above. - Please read the file . + Please read the file + . config COPS_DAYNA bool "Dayna firmware support" -- 2.26.2