From patchwork Thu Jul 6 15:28:12 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Hemminger X-Patchwork-Id: 26551 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 99E13567E; Thu, 6 Jul 2017 17:28:29 +0200 (CEST) Received: from mail-pf0-f175.google.com (mail-pf0-f175.google.com [209.85.192.175]) by dpdk.org (Postfix) with ESMTP id 9B5124C57 for ; Thu, 6 Jul 2017 17:28:24 +0200 (CEST) Received: by mail-pf0-f175.google.com with SMTP id e7so2684963pfk.0 for ; Thu, 06 Jul 2017 08:28:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=FhB1AAzxQOKGOXAUUfoHGEGYStXkxQEOuJgHH5eNZkU=; b=Cr30d76Tr5fgHGcx3niHu0/UdaDkE3Kd6SdHQt9PLPwTIJEhoOqkImrGi81QAfgxjv Zuzb331bzXPbI0lLS3jlo/HkBWdrXbIqDbZ0J+cTe1mMjwSjz0L8ySW7pN08gCYep90j VVO8husk9nx4GSgNkVyzrEq/DTsCGOwN+0qh5Dom7pQazIzAjCnTIfTckKIj6wOAVgD0 rUe0A0W49EvCwQTyVGLgCasnJWCEVIT4/k3eko5pNcfLEPlhyt6DbHAsvcGREhdpAnlV niD6fHExcN6b+CwsQl9ZPc0uZDpojja0duI4BC13bGYBD3BXM05FjjpV3vmiCWdfSrth uBEQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=FhB1AAzxQOKGOXAUUfoHGEGYStXkxQEOuJgHH5eNZkU=; b=O8ojP/vqKi4wUWNMid0bNVHt05AJFzL6CkrDs6rcKcildb5D/pD0PpTRld/r7AO8+h Jr4eAY+aIzk1lRGm9K9N7Bf9Njtbphc5Cbii9uI8GDc90Tn6BuM4P+V5L0Lfi6cJWMN+ X5/nndtp3esuv8NH4xln/hjxgKOT0JvZ7qJXdOTk/oyJ4yVSGhooLo/NqvU5ydgvBMEo advtaioxjrJxE0C3xVBOg2GpaZeKLc7FblgvO64Sh47bnwH6oJzeQaaNIVlQa777Vver Qi4eCaedQaJ9md2Dz3zqu5ZJ7Je0ZeBxPp4C15jP/HYJDt2WmLblTfaTsGTHV0OhTt2P egEw== X-Gm-Message-State: AIVw111FTOboZf/3rC3M/RRg9VOepnldX55uaVAbXlRKW6/rtWDn8/ZC emqc6bGaFNiKGRiaLg3EXg== X-Received: by 10.101.88.197 with SMTP id e5mr26585519pgu.144.1499354903699; Thu, 06 Jul 2017 08:28:23 -0700 (PDT) Received: from xeon-e3.wavecable.com (76-14-207-240.or.wavecable.com. [76.14.207.240]) by smtp.gmail.com with ESMTPSA id v64sm1079224pfk.126.2017.07.06.08.28.22 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 06 Jul 2017 08:28:22 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger Date: Thu, 6 Jul 2017 08:28:12 -0700 Message-Id: <20170706152812.16072-4-stephen@networkplumber.org> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170706152812.16072-1-stephen@networkplumber.org> References: <20170706152812.16072-1-stephen@networkplumber.org> Subject: [dpdk-dev] [PATCH 3/3] eal: fix spelling in comment 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" Minor spelling error in comment. Signed-off-by: Stephen Hemminger --- lib/librte_eal/common/eal_common_pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_eal/common/eal_common_pci.c b/lib/librte_eal/common/eal_common_pci.c index 7ed259b09cd0..15991b5e9640 100644 --- a/lib/librte_eal/common/eal_common_pci.c +++ b/lib/librte_eal/common/eal_common_pci.c @@ -300,7 +300,7 @@ pci_probe_all_drivers(struct rte_pci_device *dev) /* * Find the pci device specified by pci address, then invoke probe function of - * the driver of the devive. + * the driver of the device. */ int rte_pci_probe_one(const struct rte_pci_addr *addr)