From patchwork Fri Nov 10 07:55:41 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pavel Shirshov X-Patchwork-Id: 31324 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 3522C1B678; Fri, 10 Nov 2017 08:55:50 +0100 (CET) Received: from mail-pf0-f195.google.com (mail-pf0-f195.google.com [209.85.192.195]) by dpdk.org (Postfix) with ESMTP id 6BE331B678 for ; Fri, 10 Nov 2017 08:55:48 +0100 (CET) Received: by mail-pf0-f195.google.com with SMTP id b79so6201406pfk.5 for ; Thu, 09 Nov 2017 23:55:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:subject:date:message-id; bh=kX+cu5ymL4ip57vwEU694xk8OttbKJX0vvmNhFpW3Dk=; b=MCIGusgyQOe56jA1g41kNNO7zQqKtTt8p6BGsriouv/ibfVhJ/8MRb/xjOpgzBnDn/ Shu/mXdoI4L1awq4Pfb9wmZNDrXCkxicvLvqm+ckzHQK9iOPf1eH3VaAbAkESP9G7bx7 rPcvR5ApUJ+6T1t2GTzbshLqYamOGungMztnI1jDeVQ89kv04cIlC5zLLZJ13AJmqI9T KsfpD6Sh3LpKwNPrz5IodQUu6BT502Js9KAkZXKF2VyDGQXVCp+J7aRz7sDF3IJrGLk8 onNuC2OK6gKG3YHErNl8WbW41xbM4jzeuImvOUwDg1rPiGkaqe0jnWamRPxyL4lzDMe6 U+Kw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id; bh=kX+cu5ymL4ip57vwEU694xk8OttbKJX0vvmNhFpW3Dk=; b=fs3lye0gCMmujO0+MFcw1FS3BvOIJXabQ8/WKYIu2PMRI9u9tkeHQmCKokFojoxxcH 2KVMbIQuljRi0qalkTrE/gl+/OPJa8bDUaqIPwSnT+vUk9kEluAW+W4JB97LC8Q65WZg WaPRJJ8UTrPHxEzF5A4PLod3Sr4Y8RyVy9cdN0aItrfAwtKGxTPCDxmt9SnU6j//ivpx aeU3oQpHhP10M3mPTp7TGB8X7A7ob35kmtH3CFxpJuibH8JJYv+2YDu2CbSqQhJYss5g hRYvR/OwSu8mq46xcxD3xxfqNfH76s3+1Q5UCx3EXq7E2UCiNfAm26c1UbJK2M3qgc1v d1UQ== X-Gm-Message-State: AJaThX5/jJfnGoe2hJOKL8V4nvhXl1hMDJGd9ji5tOf1qg1Nip86k5oH Z+YHuUAxlZccZVlLaOOwRjvE1g== X-Google-Smtp-Source: ABhQp+TlqMGWTqfKIxJ660ejjSMR67O4stxRD4qWbBK5QJodDBxNQj7GHeoPMjcBM7sd5A5p82ZcmA== X-Received: by 10.101.67.200 with SMTP id n8mr3260779pgp.228.1510300547531; Thu, 09 Nov 2017 23:55:47 -0800 (PST) Received: from localhost.localdomain ([50.35.88.106]) by smtp.gmail.com with ESMTPSA id 21sm16542811pfr.132.2017.11.09.23.55.46 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 09 Nov 2017 23:55:47 -0800 (PST) From: Pavel Shirshov To: dev@dpdk.org Date: Thu, 9 Nov 2017 23:55:41 -0800 Message-Id: <1510300541-16868-1-git-send-email-pavel.shirshov@gmail.com> X-Mailer: git-send-email 2.7.4 Subject: [dpdk-dev] [PATCH] lib/librte_ether: Fix a typo 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" Signed-off-by: Pavel Shirshov --- lib/librte_ether/rte_ethdev.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_ether/rte_ethdev.h b/lib/librte_ether/rte_ethdev.h index 18e474d..341c2d6 100644 --- a/lib/librte_ether/rte_ethdev.h +++ b/lib/librte_ether/rte_ethdev.h @@ -1062,7 +1062,7 @@ struct rte_eth_rxq_info { /** * Ethernet device TX queue information structure. - * Used to retieve information about configured queue. + * Used to retrieve information about configured queue. */ struct rte_eth_txq_info { struct rte_eth_txconf conf; /**< queue config parameters. */