From patchwork Tue Nov 15 19:59:13 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Chautru, Nicolas" X-Patchwork-Id: 119873 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 761CCA0547; Tue, 15 Nov 2022 21:00:13 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id BF991410F2; Tue, 15 Nov 2022 21:00:07 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id CB0B240E03 for ; Tue, 15 Nov 2022 21:00:05 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1668542406; x=1700078406; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=rWP5iey8DLWgIU66J5JoFnEhnIU9yUGPjKpF5TK0sVQ=; b=V6t/ODDSsfasm9uG3AdegK+5BdZ8wC0xHdeDU9UDOhjMGO2Cd5KsSWAr cVbhRu1nC1pcmpD+DB5PzP5KdGHuxyiWwpio8ae8HgcivJBvsLoimsWzo F4b484dJTDPDl9x2HGUrpS/rHdJiAWNVKoiAWXfVmt3ng2B2+8a8zxq0K K1YLnVvi5uGiNC3FKOV3FeDar0IemQxL+s7B/AKYujBHDVZey3prYVdlY tP3v0GJpCKzu+r2tV9uacNEt6imI7plzT2TqjLUjm7GE011QcmGXmvCbn C+k7LTJIqOrBWQWzSd6HYNp0tkn+9+kA1zr4iJJLH+NmBs/Qdx35rXakM g==; X-IronPort-AV: E=McAfee;i="6500,9779,10532"; a="299880972" X-IronPort-AV: E=Sophos;i="5.96,166,1665471600"; d="scan'208";a="299880972" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Nov 2022 11:59:49 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10532"; a="702570271" X-IronPort-AV: E=Sophos;i="5.96,166,1665471600"; d="scan'208";a="702570271" Received: from unknown (HELO icx-npg-scs1-cp1.localdomain) ([10.233.180.245]) by fmsmga008.fm.intel.com with ESMTP; 15 Nov 2022 11:59:48 -0800 From: Nicolas Chautru To: dev@dpdk.org, thomas@monjalon.net, gakhil@marvell.com Cc: maxime.coquelin@redhat.com, hernan.vargas@intel.com, Nicolas Chautru Subject: [PATCH v2 1/2] doc: make the Linux drivers doc more generic Date: Tue, 15 Nov 2022 11:59:13 -0800 Message-Id: <20221115195914.34700-2-nicolas.chautru@intel.com> X-Mailer: git-send-email 2.37.1 In-Reply-To: <20221115195914.34700-1-nicolas.chautru@intel.com> References: <20221115195914.34700-1-nicolas.chautru@intel.com> MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Minor change so that for the documentation to be less NIC centric, as these steps can apply more generally to PCIe devices. Signed-off-by: Nicolas Chautru --- doc/guides/linux_gsg/linux_drivers.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/guides/linux_gsg/linux_drivers.rst b/doc/guides/linux_gsg/linux_drivers.rst index 2f3f079aab..4f6524ef67 100644 --- a/doc/guides/linux_gsg/linux_drivers.rst +++ b/doc/guides/linux_gsg/linux_drivers.rst @@ -12,12 +12,12 @@ Linux Drivers Different PMDs may require different kernel drivers in order to work properly. Depending on the PMD being used, a corresponding kernel driver should be loaded, -and network ports should be bound to that driver. +and network ports or other hardware devices should be bound to that driver. .. _linux_gsg_binding_kernel: -Binding and Unbinding Network Ports to/from the Kernel Modules --------------------------------------------------------------- +Binding and Unbinding to/from the Kernel Modules +------------------------------------------------ .. note::