From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id BE5C9A0096 for ; Tue, 4 Jun 2019 11:22:37 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 417031BBDF; Tue, 4 Jun 2019 11:22:36 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id EC4781BBD8; Tue, 4 Jun 2019 11:22:34 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.27/8.16.0.27) with SMTP id x549K3nP020200; Tue, 4 Jun 2019 02:22:34 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=pfpt0818; bh=R2nylewpT3Q0EsZkjw2jelT0TNkyOoi1JTXS91g6WrI=; b=oWejI9Q4+wTSOswNql5IBKaMCuT6C0oo6lSbchYjup0IX5+jdj6LZLoWWTlLDw0RjA1b IZbFw6NpIFitt0Fk53QB2v+kxSP6UMRLRKF5zpw8EohaO1fxQWZKZdgnL9jl1xx1JgJT DLFRKDuispcmcwDESf44SWQwq3uBtQHqSDDWktv3Ud68KS4KDxk45p1UEpMVlE+Z1RS0 D2qNuj3o09aJE+33/zePLjjqJTFp5wh3r9+6QNPJwKQJh5tl2JsyJWqn4pLJKrkvyha9 d26WtT+d6Y+XZVl8y+m+OIb4Q1H1HPRlpsig7IyT9NLx75sJVh3rQdkKnTI16lUizLJp ag== Received: from sc-exch02.marvell.com ([199.233.58.182]) by mx0b-0016f401.pphosted.com with ESMTP id 2swejx9ksd-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Tue, 04 Jun 2019 02:22:34 -0700 Received: from SC-EXCH03.marvell.com (10.93.176.83) by SC-EXCH02.marvell.com (10.93.176.82) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Tue, 4 Jun 2019 02:22:32 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH03.marvell.com (10.93.176.83) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Tue, 4 Jun 2019 02:22:33 -0700 Received: from kk-box-0.marvell.com (unknown [10.95.130.16]) by maili.marvell.com (Postfix) with ESMTP id D3A043F7040; Tue, 4 Jun 2019 02:22:31 -0700 (PDT) From: To: CC: Krzysztof Kanas , Date: Tue, 4 Jun 2019 11:21:26 +0200 Message-ID: <20190604092127.25000-1-kkanas@marvell.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:, , definitions=2019-06-04_07:, , signatures=0 Subject: [dpdk-dev] [PATCH] eal: fix spelling 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" From: Krzysztof Kanas Fixes: a753e53d517b ("eal: add device event monitor framework") Fixes: af75078fece3 ("first public release") Cc: stable@dpdk.org Signed-off-by: Krzysztof Kanas --- lib/librte_eal/common/include/rte_dev.h | 2 +- lib/librte_eal/common/include/rte_interrupts.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_eal/common/include/rte_dev.h b/lib/librte_eal/common/include/rte_dev.h index a17023d88bed..89093848a1ad 100644 --- a/lib/librte_eal/common/include/rte_dev.h +++ b/lib/librte_eal/common/include/rte_dev.h @@ -349,7 +349,7 @@ rte_dev_iterator_next(struct rte_dev_iterator *it); * @b EXPERIMENTAL: this API may change without prior notice * * It registers the callback for the specific device. - * Multiple callbacks cal be registered at the same time. + * Multiple callbacks can be registered at the same time. * * @param device_name * The device name, that is the param name of the struct rte_device, diff --git a/lib/librte_eal/common/include/rte_interrupts.h b/lib/librte_eal/common/include/rte_interrupts.h index 225dae283a25..aa195913b66d 100644 --- a/lib/librte_eal/common/include/rte_interrupts.h +++ b/lib/librte_eal/common/include/rte_interrupts.h @@ -36,7 +36,7 @@ typedef void (*rte_intr_unregister_callback_fn)(struct rte_intr_handle *intr_han /** * It registers the callback for the specific interrupt. Multiple - * callbacks cal be registered at the same time. + * callbacks can be registered at the same time. * @param intr_handle * Pointer to the interrupt handle. * @param cb -- 2.20.1