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 D0DAF1B20E for ; Thu, 1 Nov 2018 22:40:00 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 5498422125; Thu, 1 Nov 2018 17:40:00 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Thu, 01 Nov 2018 17:40:00 -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=n+5osGc4spNQWhvtst1vE/LgXV4j0gof81LlLqHJFiM=; b=V++2MPQ6qvVJ s8F7Rmq/tAxQbqSkZ+/rw1d1FXvKndoBmV6AyrUkbY2RkMsykHkW7m32KxaC5ugU FbMm4+VlTyJscqhqaV3Tl+X6Cr/X4Ijw7XEWNZxNbvy/itIckjlVlp9JNdkuHt1r TfHTEjkf0f/UYqjP8p4FUEDWy/wyfbE= 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=n+5osGc4spNQWhvtst1vE/LgXV4j0gof81LlLqHJF iM=; b=koTBNVQ4+P5F7O7jHxnv7o45HaqHSqE7xCswTI7HwrduqaVH4LWpz1Oj+ rovT9PVQ/tvgAsb0u1zICAWZWJomp+yKHv+5Wu4p7tS0Cl178pBxGTI2z1DUdq+3 2BcFk/tDKhq3pSwBMN3z3F4SP5d699g6rZVBZIyWmmK86RDLiYH808DGYhgXPzNr 4aHw/fHYwM9ZFPtItAKiceYDGVaIjR4vO72lxIV9MzkP1AwuRVtRa5QywYtnIiAV phTXYXCMsg5r3Y2ARbQVvSrsYFQIVubLXoHxtTQyfYFvp7HlR+RbMxKqilV082Cc 2V47aTDqHBVFDueQdYj9cGEEcO9ig== 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 45EB0102F7; Thu, 1 Nov 2018 17:39:58 -0400 (EDT) From: Thomas Monjalon To: dev@dpdk.org Cc: Stephen Hemminger , Ashish Gupta , Fiona Trahe , Pablo de Lara , Sunila Sahu , "K. Y. Srinivasan" , Haiyang Zhang Date: Thu, 01 Nov 2018 22:39:56 +0100 Message-ID: <1911007.vt2Vyu1lYi@xps> In-Reply-To: <20181028104748.32562-1-thomas@monjalon.net> References: <20181028104748.32562-1-thomas@monjalon.net> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] drivers: remove useless constructor headers 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: Thu, 01 Nov 2018 21:40:01 -0000 28/10/2018 11:47, Thomas Monjalon: > A constructor is usually declared with RTE_INIT* macros. > As it is a static function, no need to declare before its definition. > The macro is used directly in the function definition. > > Signed-off-by: Thomas Monjalon Applied