From nobody Tue Dec 2 02:06:38 2025 Received: from out30-98.freemail.mail.aliyun.com (out30-98.freemail.mail.aliyun.com [115.124.30.98]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 1E0352E8DEC for ; Thu, 20 Nov 2025 09:41:22 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=115.124.30.98 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1763631686; cv=none; b=KHKOzOcZS5k7sCHmzzu4wP7xBbiwsptDxaV8oxh9olMxDivnh0fUJTwGZtjQRS910RnHeRGyOW5A4EfGaofyktaV0et2zJApocUTE+rhKKn+/B2tC318uJaZ6qOnXzpgNpvgtxq4s6zYA7j44Gnx0bZ0k0ECNIKxTK9gXDCbSCg= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1763631686; c=relaxed/simple; bh=MO0WP9tMVFZ6hs80QKGxftc6GebLQOaOZeOjS7jfEis=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=DHa5frwOOaMe7X/zEVP9tjKAYEIj06piLlU184YfnF8h7FSVPJq1xb2YkHnGyZq0y2KB/YtjXjxV+MgX4MOmeO2fvImrCeNQEjfaLVbp2Jo7VakKyhgGKkTrsJx+drqtcihp3kbxTya7ZeGU3D7Odaxw+ojl3ZidZXa6eUal8P8= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com; spf=pass smtp.mailfrom=linux.alibaba.com; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b=ufNZXtHk; arc=none smtp.client-ip=115.124.30.98 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b="ufNZXtHk" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.alibaba.com; s=default; t=1763631674; h=From:To:Subject:Date:Message-ID:MIME-Version; bh=PMOlwl2RSWqdhQ+OAtCN0AHF22uOPsne+hE7m8m1HB4=; b=ufNZXtHk+KTG5ya59WyNTwvS2jbqC/LD8MfFyLBl60Baq8zCGDkYIJx/DBCKQZKvDKcRkOi923s75hIOrq4smaE+XenvHXtyRcdKztRVsvL6tBjpuBpDSDvAJbuLNrq5anxtag1ih3NLetSQPuyMVZYHwSjqBuyfWjIuuQ104W4= Received: from localhost(mailfrom:jiapeng.chong@linux.alibaba.com fp:SMTPD_---0Wsv4huQ_1763631666 cluster:ay36) by smtp.aliyun-inc.com; Thu, 20 Nov 2025 17:41:13 +0800 From: Jiapeng Chong To: suzuki.poulose@arm.com Cc: mike.leach@linaro.org, james.clark@linaro.org, alexander.shishkin@linux.intel.com, coresight@lists.linaro.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Jiapeng Chong , Abaci Robot Subject: [PATCH -next] coresight: remove unneeded semicolon Date: Thu, 20 Nov 2025 17:41:05 +0800 Message-ID: <20251120094105.2766068-1-jiapeng.chong@linux.alibaba.com> X-Mailer: git-send-email 2.43.5 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" No functional modification involved. ./drivers/hwtracing/coresight/coresight-priv.h:238:2-3: Unneeded semicolon. Reported-by: Abaci Robot Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=3D27327 Signed-off-by: Jiapeng Chong Reviewed-by: James Clark --- drivers/hwtracing/coresight/coresight-priv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/hwtracing/coresight/coresight-priv.h b/drivers/hwtraci= ng/coresight/coresight-priv.h index fd896ac07942..16f0cee8cad6 100644 --- a/drivers/hwtracing/coresight/coresight-priv.h +++ b/drivers/hwtracing/coresight/coresight-priv.h @@ -235,7 +235,7 @@ static inline void *coresight_get_uci_data_from_amba(co= nst struct amba_id *table if ((pid & table->mask) =3D=3D table->id) return coresight_get_uci_data(table); table++; - }; + } return NULL; } =20 --=20 2.43.5