From nobody Sun May 10 22:40:30 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id A8240C433EF for ; Thu, 21 Apr 2022 20:26:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1392358AbiDUU2t (ORCPT ); Thu, 21 Apr 2022 16:28:49 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46488 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1392334AbiDUU2o (ORCPT ); Thu, 21 Apr 2022 16:28:44 -0400 Received: from out30-132.freemail.mail.aliyun.com (out30-132.freemail.mail.aliyun.com [115.124.30.132]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id CBDC94A93F for ; Thu, 21 Apr 2022 13:25:49 -0700 (PDT) X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R821e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=e01e04400;MF=jiapeng.chong@linux.alibaba.com;NM=1;PH=DS;RN=5;SR=0;TI=SMTPD_---0VAhmMxq_1650572745; Received: from localhost(mailfrom:jiapeng.chong@linux.alibaba.com fp:SMTPD_---0VAhmMxq_1650572745) by smtp.aliyun-inc.com(127.0.0.1); Fri, 22 Apr 2022 04:25:47 +0800 From: Jiapeng Chong To: vgupta@kernel.org Cc: linux-snps-arc@lists.infradead.org, linux-kernel@vger.kernel.org, Jiapeng Chong , Abaci Robot Subject: [PATCH] clean up some inconsistent indenting Date: Fri, 22 Apr 2022 04:25:43 +0800 Message-Id: <20220421202543.129342-1-jiapeng.chong@linux.alibaba.com> X-Mailer: git-send-email 2.20.1.7.g153144c MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Eliminate the follow smatch warning: ./arch/arc/kernel/disasm.c:512:2-28: code aligned with following code on line 517. Reported-by: Abaci Robot Signed-off-by: Jiapeng Chong --- arch/arc/kernel/disasm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arc/kernel/disasm.c b/arch/arc/kernel/disasm.c index 1e1db51b6941..412f2c794593 100644 --- a/arch/arc/kernel/disasm.c +++ b/arch/arc/kernel/disasm.c @@ -514,13 +514,13 @@ int __kprobes disasm_next_pc(unsigned long pc, struct= pt_regs *regs, /* For the instructions with delay slots, the fall through is the * instruction following the instruction in delay slot. */ - if (instr.delay_slot) { + if (instr.delay_slot) { struct disasm_state instr_d; =20 disasm_instr(*next_pc, &instr_d, 0, regs, cregs); =20 *next_pc +=3D instr_d.instr_len; - } + } =20 /* Zero Overhead Loop - end of the loop */ if (!(regs->status32 & STATUS32_L) && (*next_pc =3D=3D regs->lp_end) --=20 2.20.1.7.g153144c