From nobody Sun Apr 19 12:15:44 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 E9EC8C433EF for ; Fri, 1 Jul 2022 09:46:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232365AbiGAJqO (ORCPT ); Fri, 1 Jul 2022 05:46:14 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37994 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229911AbiGAJqM (ORCPT ); Fri, 1 Jul 2022 05:46:12 -0400 Received: from unicom146.biz-email.net (unicom146.biz-email.net [210.51.26.146]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B39AC747B9 for ; Fri, 1 Jul 2022 02:46:10 -0700 (PDT) Received: from ([60.208.111.195]) by unicom146.biz-email.net ((D)) with ASMTP (SSL) id WIW00101; Fri, 01 Jul 2022 17:46:01 +0800 Received: from localhost.localdomain (10.200.104.82) by jtjnmail201602.home.langchao.com (10.100.2.2) with Microsoft SMTP Server id 15.1.2507.9; Fri, 1 Jul 2022 17:46:05 +0800 From: Deming Wang To: CC: , , , , Deming Wang Subject: [PATCH] powerpc: Fix formatting problems to make code look more beautiful Date: Fri, 1 Jul 2022 05:45:53 -0400 Message-ID: <20220701094553.1722-1-wangdeming@inspur.com> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Originating-IP: [10.200.104.82] tUid: 20227011746015071030bb3701dfeb457290dce6ab190 X-Abuse-Reports-To: service@corp-email.com Abuse-Reports-To: service@corp-email.com X-Complaints-To: service@corp-email.com X-Report-Abuse-To: service@corp-email.com Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Operators should be separated by spaces in tce_buildmulti_pSeriesLP Signed-off-by: Deming Wang --- arch/powerpc/platforms/pseries/iommu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/powerpc/platforms/pseries/iommu.c b/arch/powerpc/platform= s/pseries/iommu.c index fba64304e859..d09c8bb06e5b 100644 --- a/arch/powerpc/platforms/pseries/iommu.c +++ b/arch/powerpc/platforms/pseries/iommu.c @@ -248,7 +248,7 @@ static int tce_buildmulti_pSeriesLP(struct iommu_table = *tbl, long tcenum, * Set up the page with TCE data, looping through and setting * the values. */ - limit =3D min_t(long, npages, 4096/TCE_ENTRY_SIZE); + limit =3D min_t(long, npages, 4096 / TCE_ENTRY_SIZE); =20 for (l =3D 0; l < limit; l++) { tcep[l] =3D cpu_to_be64(proto_tce | rpn << tceshift); --=20 2.27.0