From nobody Thu Jan 1 23:04:43 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 C56DFCDB474 for ; Wed, 18 Oct 2023 01:11:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1344265AbjJRBLr (ORCPT ); Tue, 17 Oct 2023 21:11:47 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53340 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229463AbjJRBLp (ORCPT ); Tue, 17 Oct 2023 21:11:45 -0400 Received: from out30-110.freemail.mail.aliyun.com (out30-110.freemail.mail.aliyun.com [115.124.30.110]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5D4CBB0; Tue, 17 Oct 2023 18:11:43 -0700 (PDT) X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R121e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=ay29a033018046060;MF=yang.lee@linux.alibaba.com;NM=1;PH=DS;RN=12;SR=0;TI=SMTPD_---0VuOlUEq_1697591499; Received: from localhost(mailfrom:yang.lee@linux.alibaba.com fp:SMTPD_---0VuOlUEq_1697591499) by smtp.aliyun-inc.com; Wed, 18 Oct 2023 09:11:40 +0800 From: Yang Li To: dave.hansen@linux.intel.com, peterz@infradead.org, mingo@redhat.com, acme@kernel.org Cc: mark.rutland@arm.com, alexander.shishkin@linux.intel.com, jolsa@kernel.org, namhyung@kernel.org, linux-perf-users@vger.kernel.org, linux-kernel@vger.kernel.org, Yang Li , Abaci Robot Subject: [PATCH -next] perf/x86/amd/uncore: Remove unneeded semicolon Date: Wed, 18 Oct 2023 09:11:38 +0800 Message-Id: <20231018011138.782-1-yang.lee@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" ./arch/x86/events/amd/uncore.c:1038:2-3: Unneeded semicolon Reported-by: Abaci Robot Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=3D6899 Signed-off-by: Yang Li --- arch/x86/events/amd/uncore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/events/amd/uncore.c b/arch/x86/events/amd/uncore.c index 5bf03c575812..5546b9c08b73 100644 --- a/arch/x86/events/amd/uncore.c +++ b/arch/x86/events/amd/uncore.c @@ -1035,7 +1035,7 @@ static int __init amd_uncore_init(void) ret =3D -ENOMEM; goto fail; } - }; + } =20 /* * Install callbacks. Core will call them for each online cpu. --=20 2.20.1.7.g153144c