From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 5A828A0613 for ; Mon, 26 Aug 2019 15:18:06 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B02611C206; Mon, 26 Aug 2019 15:18:05 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 1017) id 9A52C1C1E5; Mon, 26 Aug 2019 15:18:03 +0200 (CEST) In-Reply-To: <20190826130246.30485-6-g.singh@nxp.com> References: <20190826130246.30485-6-g.singh@nxp.com> To: test-report@dpdk.org Cc: Gagandeep Singh Message-Id: <20190826131803.9A52C1C1E5@dpdk.org> Date: Mon, 26 Aug 2019 15:18:03 +0200 (CEST) From: checkpatch@dpdk.org Subject: [dpdk-test-report] |WARNING| pw57980 [PATCH v1 05/13] net/ppfe: add HW specific macros and operations X-BeenThere: test-report@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: automatic DPDK test reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: test-report-bounces@dpdk.org Sender: "test-report" Test-Label: checkpatch Test-Status: WARNING http://dpdk.org/patch/57980 _coding style issues_ WARNING:UNNECESSARY_INT: Prefer 'unsigned long' over 'unsigned long int' as the int is unnecessary #1283: FILE: drivers/net/ppfe/base/pfe.h:161: +#define DDR_PHYS_TO_PFE(p) (((unsigned long int)(p)) & 0x7FFFFFFF) WARNING:UNNECESSARY_INT: Prefer 'unsigned long' over 'unsigned long int' as the int is unnecessary #1284: FILE: drivers/net/ppfe/base/pfe.h:162: +#define DDR_PFE_TO_PHYS(p) (((unsigned long int)(p)) | 0x80000000) WARNING:UNNECESSARY_INT: Prefer 'unsigned long' over 'unsigned long int' as the int is unnecessary #1295: FILE: drivers/net/ppfe/base/pfe.h:173: +#define CBUS_PFE_TO_VIRT(p) (((unsigned long int)(p) - \ total: 0 errors, 3 warnings, 0 checks, 1354 lines checked