From patchwork Tue May 1 19:35:50 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 39219 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 [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id BE46D29CB; Tue, 1 May 2018 21:35:57 +0200 (CEST) Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) by dpdk.org (Postfix) with ESMTP id A96F729AC; Tue, 1 May 2018 21:35:56 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 123AB21B96; Tue, 1 May 2018 15:35:56 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Tue, 01 May 2018 15:35:56 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:date:from:message-id:subject:to:x-me-sender:x-me-sender :x-sasl-enc; s=mesmtp; bh=iJ3twZMLl0TSqjrIh/p/NicbN9awxd8ARHBWcR wIQpU=; b=AT8YtitbYjRwbWmVSHj4qMZ1S+/RtXVhHWxVWbq3szzvCbL5wcfV+0 B4seUA7NbvmrswTcdkHAjeB+xsXrug0AHEMtxfl3vbess/18mnLU5n4J5xNXPo3e wawcoH+3gMm8ZI8G8TbyDb4iWHAf9Dr3i9BKVa2M6v17S4uun/BOU= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:message-id:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=iJ3twZMLl0TSqjrIh /p/NicbN9awxd8ARHBWcRwIQpU=; b=RzsghWS5DCHKs/BOaBgMJBs5lDb0cqQgF LqIS3dfMz1U2QlHlSJjK0R2y+PG2O/1bDxnU/YguvoYAtcRchDsg8Iv0sW1KWWqk UXdGG8wAdGbsQPra2w+KWIIe6DTNx0OYbgxG5dnZ/YpIJ5GWUv7Xv2JB9pjMj0pH jsKmf2CGcYp6T4fsbfdDQRdpnZ/GJZvJxhjHAFLA1ixR83HD2u7K4M0eaV7NXLE5 iJMfKU3kegTRUtojSDA3InxSZ3cHsVWVo4LIhNYVJoNjAdFzUwOgQMrLDPA49X/I +SQZwmTurD/wGWQK1SfulZ60noIMVEq4SxreQtF3HTEy/pejSrwxA== X-ME-Sender: Received: from xps.monjalon.net (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 65FB2E444A; Tue, 1 May 2018 15:35:55 -0400 (EDT) From: Thomas Monjalon To: dev@dpdk.org Cc: stable@dpdk.org Date: Tue, 1 May 2018 21:35:50 +0200 Message-Id: <20180501193550.1224-1-thomas@monjalon.net> X-Mailer: git-send-email 2.16.2 Subject: [dpdk-dev] [PATCH] eal: fix typo in doc of pointer offset macro 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" Fixes: af75078fece3 ("first public release") Cc: stable@dpdk.org Signed-off-by: Thomas Monjalon --- lib/librte_eal/common/include/rte_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_eal/common/include/rte_common.h b/lib/librte_eal/common/include/rte_common.h index 69e5ed1e3..ca4d0eaa6 100644 --- a/lib/librte_eal/common/include/rte_common.h +++ b/lib/librte_eal/common/include/rte_common.h @@ -124,7 +124,7 @@ static void __attribute__((constructor(RTE_PRIO(prio)), used)) func(void) /*********** Macros for pointer arithmetic ********/ /** - * add a byte-value offset from a pointer + * add a byte-value offset to a pointer */ #define RTE_PTR_ADD(ptr, x) ((void*)((uintptr_t)(ptr) + (x)))