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 68D1D45C17; Wed, 30 Oct 2024 18:38:51 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E102C4346E; Wed, 30 Oct 2024 18:38:43 +0100 (CET) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.7]) by mails.dpdk.org (Postfix) with ESMTP id 7D9C64025F for ; Wed, 30 Oct 2024 18:38:39 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1730309919; x=1761845919; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=D03rlA7C1CIP8jrjaFz979oVTQHwjxMY2Q1ve1dClY0=; b=L2IufmyUil+pTgId8FsNPrJ6t+4unmEsNtESIfxV1wO2t7WmUQ87hisE +L4n35fuv4Z6QXDkw/T9kitYh31ORaeULD396cPDRFvY2fIeOWyhuOVFD 4tyZ73AHwo3V1tddTC8vIY0cyvbVyJbLD1FrOCuDOjn7cyOwMsK2Hsku9 oOVH5FA0kHXlddUHqt8RPaV3qF00YoIqF2WlGZp+Wr0+L71Zuj1Zln6NX QzedKU+IE5GIwsge3QdVmeCONjCaMXcezYmWyQYBjx8sPCI6MT1qIUwoP 8zrt+/H/u8FWED0/3E4dyuOTr5bYMoJjKfTU9ckZHow7yUyxMhmBU3muY A==; X-CSE-ConnectionGUID: ZW/HnQTmR0We+NJ9ewsh5Q== X-CSE-MsgGUID: uCJc5dVaSbiArmDsnXSJnw== X-IronPort-AV: E=McAfee;i="6700,10204,11241"; a="55430710" X-IronPort-AV: E=Sophos;i="6.11,245,1725346800"; d="scan'208";a="55430710" Received: from fmviesa003.fm.intel.com ([10.60.135.143]) by fmvoesa101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Oct 2024 10:38:38 -0700 X-CSE-ConnectionGUID: lSCkpCDgSHiEi82HeaezRQ== X-CSE-MsgGUID: leuozgceRbOKNQnbn+KaGQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.11,245,1725346800"; d="scan'208";a="86324587" Received: from silpixa00400496-oob.ir.intel.com (HELO silpixa00401385.ir.intel.com) ([10.237.214.43]) by fmviesa003.fm.intel.com with ESMTP; 30 Oct 2024 10:38:37 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson Subject: [PATCH 2/6] net/ice/base: remove warning disable flag Date: Wed, 30 Oct 2024 17:38:25 +0000 Message-ID: <20241030173830.881368-3-bruce.richardson@intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20241030173830.881368-1-bruce.richardson@intel.com> References: <20241030173830.881368-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 The -Wno-unused-value flag is not needed for building the base code, so remove that flag from the list of warnings to disable. Signed-off-by: Bruce Richardson --- drivers/net/ice/base/meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/net/ice/base/meson.build b/drivers/net/ice/base/meson.build index 38ddde9e8c..addb922ac9 100644 --- a/drivers/net/ice/base/meson.build +++ b/drivers/net/ice/base/meson.build @@ -32,7 +32,6 @@ sources = [ ] error_cflags = [ - '-Wno-unused-value', '-Wno-unused-but-set-variable', '-Wno-unused-variable', '-Wno-unused-parameter', -- 2.43.0