From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id BC06B239 for ; Thu, 25 Oct 2018 01:34:04 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 5122E21ED6; Wed, 24 Oct 2018 19:34:04 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Wed, 24 Oct 2018 19:34:04 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=pGQJ8qmo2qAXwFnjknH454fZxjlYuFsJTo6KTpGTiUs=; b=b1+7ImZ1v5ID 5rjNj3rR4lr9klheq5ijI6zUXBf/M0vrzUOg+G9veMzaIq4wVi/KC8ZE+OPFZkVs uHHBlx9vgrg8DONzQ+8gX7o9w/yq05w3EO+DfDrgSJG07N0dqL1/z/p52hy97X2b l8FvzyNJMHpygnpdRxBog89r25k3wEE= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=pGQJ8qmo2qAXwFnjknH454fZxjlYuFsJTo6KTpGTi Us=; b=LwRVUmfCk/7mvXQLP38mjX8eGIkSsNZH3pvHqYJI+F+U0vjRhtpclrvAD reYhODwUn7PwnKL52SxxLFzrjO7VHFoxiVJZTKUaVVPKVbeUXLD2bnwjlrn9By3D 1IMKZqzomf5SyNkycYnJ7pn7mu9kSRxSh4AmNohgjy9/D40bzJPoGWk+MkWFw97r wGl4n0N0irgwjBZT4MfpG320f9sf93oEPz+bA7ltraPsagOLLOlSRH1oac7CxyP6 LWccTC0gLOwSXfEsPGEinRX/7lfaUWRE1b0sIq7MVCqofHZPlQu1cPiz3cSMWulQ QuhKq1OI2VW0uJ1lc+HlsypSUj0bg== X-ME-Sender: X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 5E98D102EB; Wed, 24 Oct 2018 19:34:03 -0400 (EDT) From: Thomas Monjalon To: Stephen Hemminger Cc: dev@dpdk.org Date: Thu, 25 Oct 2018 01:34:05 +0200 Message-ID: <2855238.WZRUVW5M7A@xps> In-Reply-To: <20181010232219.28410-1-stephen@networkplumber.org> References: <20181010232219.28410-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] eal: eliminate cast of hpet_msb_inc 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: , X-List-Received-Date: Wed, 24 Oct 2018 23:34:05 -0000 11/10/2018 01:22, Stephen Hemminger: > The cast of hpet_msb_inc is causing a warning in some compilations. > Yet the cast is unnecessary, the function is used only one place > just use the correct signature. > > Signed-off-by: Stephen Hemminger Applied, thanks