Received: by 2002:a4a:311b:0:0:0:0:0 with SMTP id k27-v6csp3856421ooa; Mon, 13 Aug 2018 20:00:28 -0700 (PDT) X-Google-Smtp-Source: AA+uWPxtXWJOHMpbXTs4zbYwoth3QLFKsGvkGYzRERKH4ssqjd9UfyltTCwvoku9AweI/LpQ/HaR X-Received: by 2002:a62:444d:: with SMTP id r74-v6mr21366340pfa.96.1534215628692; Mon, 13 Aug 2018 20:00:28 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1534215628; cv=none; d=google.com; s=arc-20160816; b=xslbj1bGkq9sEylYhaSDM2uSaDoiJWW+uovqJu+cStI0F5moU3/lBNce2McVOlPEPf ZXrdgWIcHnIU2u/yJz76nc0DjIdUCVAcLEP6eLHLBQftBI8cplLH+nCs7H0wh49VmaAO hnJxW4yrvTOcHL8+YfXa8g/mxSAfrB2STsbtWx35s0XKPfpId1uzInoRL4f7KA876HQi kZbkZidIXwza2qabOGwyi+f1U8HKpnT1TNKjXQWwO2jqc6V1ujPk8hiTw8J5EV3lBRld dTAzkWe332DMLZlcb/QYmdote/zyxkVJ03vGXGmgL6IM1AJdCAtqNyr/GKfbGC57ctcS A4jw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:arc-authentication-results; bh=BWU2ZKOaglgHsCJpttYcqQWFrOBRB7t5r2Ks1NBV340=; b=Wau7FK/LrQMKz7OclmsHSgLj4le2wVqMW68GUNXn0PB2bCUhSifOgBXuXMx8Lsvkfg 4xx5ruGr9xNKJ2zG2u4kyHJ9HM0hmXzEtZuG3Ql8T9mFwCMPNzjdSfF3vv9L696Lz8i2 85uAmVme26p+F83fctuJMk2CA07bvCb3cZbJULYYsiRQ6TU50QlGbLrs9GtrLyf9H37a ZpDHhWNOVflgqNJRsoggHU/frAsCyK46hD8JCV0Dt3DJpmtizDPAcaoF+H8sCtdVnhOX ebvlTmV3z7d4VxhcAg2HxiUpIikKOHCBQDxfyyuAQt7Ep2MOF+xTHsm1qxtrlbYEbUKK ngpg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id d124-v6si20664841pfg.366.2018.08.13.20.00.13; Mon, 13 Aug 2018 20:00:28 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731137AbeHNFnz (ORCPT + 99 others); Tue, 14 Aug 2018 01:43:55 -0400 Received: from szxga04-in.huawei.com ([45.249.212.190]:11103 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1729955AbeHNFny (ORCPT ); Tue, 14 Aug 2018 01:43:54 -0400 Received: from DGGEMS404-HUB.china.huawei.com (unknown [172.30.72.59]) by Forcepoint Email with ESMTP id A8D116CA693A6; Tue, 14 Aug 2018 10:58:45 +0800 (CST) Received: from linux-ibm.site (10.175.102.37) by DGGEMS404-HUB.china.huawei.com (10.3.19.204) with Microsoft SMTP Server id 14.3.399.0; Tue, 14 Aug 2018 10:58:44 +0800 From: zhong jiang To: , , , , , , , , , CC: , , Subject: [PATCH 2/2] powerpc: Use ARRAY_SIZE to replace its implementation Date: Tue, 14 Aug 2018 10:46:54 +0800 Message-ID: <1534214814-9043-3-git-send-email-zhongjiang@huawei.com> X-Mailer: git-send-email 1.7.12.4 In-Reply-To: <1534214814-9043-1-git-send-email-zhongjiang@huawei.com> References: <1534214814-9043-1-git-send-email-zhongjiang@huawei.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.175.102.37] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Use ARRAY_SIZE instead of dividing sizeof array with sizeof an element. So just replace it. Signed-off-by: zhong jiang --- arch/powerpc/xmon/ppc-opc.c | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/arch/powerpc/xmon/ppc-opc.c b/arch/powerpc/xmon/ppc-opc.c index ac2b55b..f3f57a1 100644 --- a/arch/powerpc/xmon/ppc-opc.c +++ b/arch/powerpc/xmon/ppc-opc.c @@ -966,8 +966,7 @@ { 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,7 @@ {"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 +7217,7 @@ {"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 +7285,4 @@ {"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); -- 1.7.12.4