From patchwork Sun Oct 29 13:24:44 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rami Rosen X-Patchwork-Id: 31015 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A5DF21B31B; Sun, 29 Oct 2017 14:25:43 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 45CB01B2FE for ; Sun, 29 Oct 2017 14:25:41 +0100 (CET) Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Oct 2017 06:25:40 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.44,314,1505804400"; d="scan'208";a="169176371" Received: from imail001.iil.intel.com ([10.184.207.12]) by fmsmga006.fm.intel.com with ESMTP; 29 Oct 2017 06:25:39 -0700 Received: from cghost.iil.intel.com (cghost.iil.intel.com [143.185.141.164]) by imail001.iil.intel.com with ESMTP id v9TDPdIX005700; Sun, 29 Oct 2017 15:25:39 +0200 From: Rami Rosen To: dev@dpdk.org Cc: Rami Rosen Date: Sun, 29 Oct 2017 15:24:44 +0200 Message-Id: <1509283484-21013-1-git-send-email-rami.rosen@intel.com> X-Mailer: git-send-email 1.9.1 Subject: [dpdk-dev] [PATCH] doc: fix a typo in DPDK programmer's guide X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch fixes a trivial typo in DPDK programmer's guide: it should be rte_cpu_get_features() instead of rte_cpu_get_feature(). Signed-off-by: Rami Rosen Acked-by: John McNamara --- doc/guides/prog_guide/env_abstraction_layer.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/prog_guide/env_abstraction_layer.rst b/doc/guides/prog_guide/env_abstraction_layer.rst index 4775eb3..9e834fc 100644 --- a/doc/guides/prog_guide/env_abstraction_layer.rst +++ b/doc/guides/prog_guide/env_abstraction_layer.rst @@ -153,7 +153,7 @@ which can trigger the generation of a core file, readable by gdb. CPU Feature Identification ~~~~~~~~~~~~~~~~~~~~~~~~~~ -The EAL can query the CPU at runtime (using the rte_cpu_get_feature() function) to determine which CPU features are available. +The EAL can query the CPU at runtime (using the rte_cpu_get_features() function) to determine which CPU features are available. User Space Interrupt Event ~~~~~~~~~~~~~~~~~~~~~~~~~~