This message generated a parse failure. Raw output follows here. Please use 'back' to navigate. From devnull@lkml.org Fri Apr 26 22:41:16 2024 >From mailfetcher Fri Sep 1 23:30:22 2017 Envelope-to: lkml@grols.ch Delivery-date: Fri, 01 Sep 2017 23:30:19 +0200 Received: from srv.grols.ch [5.172.41.101] by 74f7beb50cb2 with IMAP (fetchmail-6.3.26) for (single-drop); Fri, 01 Sep 2017 23:30:22 +0200 (CEST) Received: from vger.kernel.org ([209.132.180.67]) by home.grols.ch with esmtp (Exim 4.89) (envelope-from ) id 1dntW6-00021B-Qy for lkml@grols.ch; Fri, 01 Sep 2017 23:30:19 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752645AbdIAVaP (ORCPT ); Fri, 1 Sep 2017 17:30:15 -0400 Received: from www17.your-server.de ([213.133.104.17]:36296 "EHLO www17.your-server.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752512AbdIAVaK (ORCPT ); Fri, 1 Sep 2017 17:30:10 - Received: from [95.222.27.135] (helo=localhost.localdomain) by www17.your-server.de with esmtpsa (TLSv1.2:DHE-RSA-AES128-GCM-SHA256:128) (Exim 4.85_2) (envelope-from ) id 1dntVx-0003vK-1K; Fri, 01 Sep 2017 23:30:09 +020 From: Thomas Meyer To: linux-kernel@vger.kernel.org Cc: Thomas Meyer Subject: [PATCH 5/6] powerpc/xmon: Use ARRAY_SIZE macro Date: Fri, 1 Sep 2017 23:29:06 +0200 Message-Id: <20170901212907.5662-5-thomas@m3y3r.de> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170901212907.5662-1-thomas@m3y3r.de> References: <20170901212907.5662-1-thomas@m3y3r.de> X-Authenticated-Sender: thomas@m3y3r.de X-Virus-Scanned: Clear (ClamAV 0.99.2/23754/Fri Sep 1 22:37:30 2017) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-Id: X-Mailing-List: linux-kernel@vger.kernel.org Received-SPF: none client-ip=209.132.180.67; envelope-from=linux-kernel-owner@vger.kernel.org; helo=vger.kernel.org X-Spam-Score: 4.2 X-Spam-Score-Bar: ++++ X-Spam-Action: greylist X-Spam-Report: Action: greylist Symbol: AUTH_NA(1.00) Symbol: R_SPF_NA(0.00) Symbol: MID_CONTAINS_FROM(1.00) Symbol: R_DKIM_NA(0.00) Symbol: FORGED_SENDER(0.30) Symbol: TO_DN_SOME(0.00) Symbol: FORGED_RECIPIENTS(2.00) Symbol: PRECEDENCE_BULK(0.00) Symbol: HAS_X_AS(0.00 Found by a coccinelle run with: make coccicheck MODE=patch COCCI=scripts/coccinelle/misc/array_size.cocci Signed-off-by: Thomas Meyer --- arch/powerpc/xmon/ppc-opc.c | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/arch/powerpc/xmon/ppc-opc.c b/arch/powerpc/xmon/ppc-opc.c index ac2b55b1332e..35c23517d523 100644 --- a/arch/powerpc/xmon/ppc-opc.c +++ b/arch/powerpc/xmon/ppc-opc.c @@ -966,8 +966,7 @@ const struct powerpc_operand powerpc_operands[] = { 0xff, 11, NULL, NULL, PPC_OPERAND_SIGNOPT }, }; -const unsigned int num_powerpc_operands = (sizeof (powerpc_operands) - / sizeof (powerpc_operands[0])); +const unsigned int num_powerpc_operands = ARRAY_SIZE(powerpc_operands); /* The functions used to insert and extract complicated operands. */ @@ -6980,8 +6979,8 @@ const struct powerpc_opcode powerpc_opcodes[] = { {"fcfidu.", XRC(63,974,1), XRA_MASK, POWER7|PPCA2, PPCVLE, {FRT, FRB}}, }; -const int powerpc_num_opcodes = - sizeof (powerpc_opcodes) / sizeof (powerpc_opcodes[0]); +const int powerpc_num_opcodes = ARRAY_SIZE(powerpc_opcodes); + /* The VLE opcode table. @@ -7219,8 +7218,8 @@ const struct powerpc_opcode vle_opcodes[] = { {"se_bl", BD8(58,0,1), BD8_MASK, PPCVLE, 0, {B8}}, }; -const int vle_num_opcodes = - sizeof (vle_opcodes) / sizeof (vle_opcodes[0]); +const int vle_num_opcodes = ARRAY_SIZE(vle_opcodes); + /* The macro table. This is only used by the assembler. */ @@ -7288,5 +7287,4 @@ const struct powerpc_macro powerpc_macros[] = { {"e_clrlslwi",4, PPCVLE, "e_rlwinm %0,%1,%3,(%2)-(%3),31-(%3)"}, }; -const int powerpc_num_macros = - sizeof (powerpc_macros) / sizeof (powerpc_macros[0]); +const int powerpc_num_macros = ARRAY_SIZE(powerpc_macros); -- 2.11.0