From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 42D7EA0547; Thu, 9 Sep 2021 19:57:47 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7979A4116B; Thu, 9 Sep 2021 19:57:11 +0200 (CEST) Received: from mail-pj1-f54.google.com (mail-pj1-f54.google.com [209.85.216.54]) by mails.dpdk.org (Postfix) with ESMTP id 25B244116D for ; Thu, 9 Sep 2021 19:57:10 +0200 (CEST) Received: by mail-pj1-f54.google.com with SMTP id t20so1929178pju.5 for ; Thu, 09 Sep 2021 10:57:10 -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 :mime-version:content-transfer-encoding; bh=iYbq4jE+npnRB2w58kuFtHUXkUA+eXsc8+/BOEkSMFE=; b=Xf9OfL0Ar7J5nW/oZkxpsA+or7Ayq6t+gtWoOQZjxjcwozzdRxSXDibgKPp4Vxy0zI zSabnrr0ARQjW6l2hR2MRwiWxwAlFkrhtjf5IV3y7PxT2NNkCM5NuNkAn+gQIh2AUUow YtEZcaP1k14vA2jbf9QSPRgnlS+hcaBc03IkUgbSdthOHibkiokuu0xdGeCp9pS6/gc6 Jz7T3Z3L0Y6XCZmVtmB+L9E6mfoeOyAmFcydr54SQdzpUk/yLzFEM0C2nqH3ix6WVLDU thzyv/MtPwJIMpOU2ENGs2BTCOt6s5T3f8zqV5PIw4nfMwI7shypbWHmGlBIjbmK/B4u YuMQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=iYbq4jE+npnRB2w58kuFtHUXkUA+eXsc8+/BOEkSMFE=; b=dido0KEJIYF422ToAHmVTzNUrdiYCUnkjUXKkvXaR8DKp0id58YW/arf8p/gdAZHZU r6VPb+CwhlCxSuh8QnHl3MI0Owa7JMDjpF73ElnyipWxarxwZtpVcLUOA/DdExaBFlkA tXZySYn/QgwY1V6fG1gm/zUoi6sgGeHyZ1uCv+Ab3W+bqR+WnASbsb+ghmN0H7QOgcOd mCOkst6JUsr0vdTbrnirG7AhO0EYJFxqznJpxEuzH2cGQpB3yXsGtJTTPOOGttl4U6B3 k4FKlcmvwQXr0mwMLud8HWxvap9d+SaNQLh4hoy5epp85huj0PIbzG2dOeaRi5jJ6E2O gVpQ== X-Gm-Message-State: AOAM533IflTzqclTfcWciyArHru14tQAeP7gZu9B0qjwwRqm5XT8CMPt MDEHP4cd+lMvDsAjlzi81XAgMN4woV3C3A== X-Google-Smtp-Source: ABdhPJw62V73Dh5uizRm58UIeUm6LMlzShHHXKJCFGbwV6ZqkNAezszXUvvJMUkN4dQGxpj7iKkIvg== X-Received: by 2002:a17:90a:4f46:: with SMTP id w6mr4835189pjl.9.1631210228930; Thu, 09 Sep 2021 10:57:08 -0700 (PDT) Received: from hermes.local (204-195-33-123.wavecable.com. [204.195.33.123]) by smtp.gmail.com with ESMTPSA id v25sm2772977pfm.202.2021.09.09.10.57.04 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 09 Sep 2021 10:57:05 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger Date: Thu, 9 Sep 2021 10:56:40 -0700 Message-Id: <20210909175648.174258-11-stephen@networkplumber.org> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20210909175648.174258-1-stephen@networkplumber.org> References: <20210909175648.174258-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH 10/18] bbdev: fix typo in comment 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 Sender: "dev" Signed-off-by: Stephen Hemminger --- lib/bbdev/rte_bbdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bbdev/rte_bbdev.c b/lib/bbdev/rte_bbdev.c index fc37236195be..49a0de49d8df 100644 --- a/lib/bbdev/rte_bbdev.c +++ b/lib/bbdev/rte_bbdev.c @@ -138,7 +138,7 @@ rte_bbdev_data_alloc(void) } /* - * Find data alocated for the device or if not found return first unused bbdev + * Find data allocated for the device or if not found return first unused bbdev * data. If all structures are in use and none is used by the device return * NULL. */ -- 2.30.2