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 21D9A45967; Thu, 12 Sep 2024 07:19:58 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E3C0D4025E; Thu, 12 Sep 2024 07:19:57 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id B59ED40144 for ; Thu, 12 Sep 2024 07:19:56 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id 12E2520B9A9B; Wed, 11 Sep 2024 22:19:56 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 12E2520B9A9B DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1726118396; bh=1n5f3+Mv0yKk3uP7CN4iPW7gaKusLm0G5BESrp90chQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=NzGWx4zkUj+MizpAZT2WYUeGmLN4pDI/PEkI3ESHNGw333oqZx79D5FD5BDfOcgYg 3z4cUqKzBO6zJ0i6q7tw8KrMb0IbO+JvcIkACdyLFUokQe+U3hBb51tjVLi9fdOfL0 t6vidkPkkExEzZDapJ9OglH+BqfcVTWiQVuKwjEs= Date: Wed, 11 Sep 2024 22:19:56 -0700 From: Tyler Retzlaff To: Stephen Hemminger Cc: dev@dpdk.org, Anatoly Burakov , David Hunt , Sivaprasad Tummala Subject: Re: [PATCH] power: don't disable all cast qualifier warnings Message-ID: <20240912051956.GD6879@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20240812215609.97353-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240812215609.97353-1-stephen@networkplumber.org> User-Agent: Mutt/1.5.21 (2010-09-15) 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 On Mon, Aug 12, 2024 at 02:56:09PM -0700, Stephen Hemminger wrote: > Only in one place does the power library need un-constify a pointer > and this can be done by casting to uintptr_t first. Better, to have > the warning enabled across the rest of the code. > > Signed-off-by: Stephen Hemminger > --- Acked-by: Tyler Retzlaff