From patchwork Mon May 6 01:11:21 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yang Li X-Patchwork-Id: 13654803 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 1BBE6C4345F for ; Mon, 6 May 2024 01:11:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=fMTWEUnVpSjie0uUxCZxdJ17U4ctDs1ZED3lMIoYPNw=; b=Zf1t4UnFpmV8d1 HQKxrxa45twqGism0UXyIvidcJzJMxDqX9eRonv16q8HVxTDROz9iHovRhiVx8Qjf2h5BZWU0sC2f I1AoUmY1b79uzL+eI/v4qfFfxQRGYcIBN+ZbQcCshju/SdgFF+urbvFGeCMHhjUow91kS1Xj9ufx+ Gq1Et0Ai4EGmD+jHI0dLN9smTpGARht8196wV+qBGde3h6ICCtiZakOyJWNkgA2FCb9bIBRZ1mjW1 4lsMFafy9BDqRKyrW0R508dC+aGmWuDgqj5qQYn9Xs0hrw2bqlQ7rzfKIzSlEoafkCHLLsbTZG11x kWzp8HS9NMBpHC50l00Q==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1s3mtK-00000005gFC-1iV8; Mon, 06 May 2024 01:11:42 +0000 Received: from out30-100.freemail.mail.aliyun.com ([115.124.30.100]) by bombadil.infradead.org with esmtps (Exim 4.97.1 #2 (Red Hat Linux)) id 1s3mtG-00000005gDC-0COm for linux-arm-kernel@lists.infradead.org; Mon, 06 May 2024 01:11:41 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.alibaba.com; s=default; t=1714957888; h=From:To:Subject:Date:Message-Id:MIME-Version; bh=nfeEy764PjJmm2hNAZ96dBiIs1iOgWMjNMaCbgQ4Iz4=; b=l7phb9IwBmkE0+tIPBzxGlK2eQu8y9hR/gvvF3lyaRzPBWup/OOTE54YIQcUdzX50Cpnh7mdBULv9UYopXRWAeSNyzgPQ4GALIlGNTCKF6WPMA0fJrEG1mumjQ4omD8W7kPd2Z3NJ7w0iHXMjQNxUPlzr7Ji8dCGVK7iUxCXzVk= X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R101e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=maildocker-contentspam033037067113;MF=yang.lee@linux.alibaba.com;NM=1;PH=DS;RN=9;SR=0;TI=SMTPD_---0W5pR6Ly_1714957881; Received: from localhost(mailfrom:yang.lee@linux.alibaba.com fp:SMTPD_---0W5pR6Ly_1714957881) by smtp.aliyun-inc.com; Mon, 06 May 2024 09:11:22 +0800 From: Yang Li To: suzuki.poulose@arm.com, alexander.shishkin@linux.intel.com, mike.leach@linaro.org, james.clark@arm.com Cc: coresight@lists.linaro.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Yang Li , Abaci Robot Subject: [PATCH -next] coresight: tmc: Remove duplicated include in coresight-tmc-core.c Date: Mon, 6 May 2024 09:11:21 +0800 Message-Id: <20240506011121.39179-1-yang.lee@linux.alibaba.com> X-Mailer: git-send-email 2.20.1.7.g153144c MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240505_181138_698376_E7343E08 X-CRM114-Status: UNSURE ( 7.31 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org The header files linux/acpi.h is included twice in coresight-tmc-core.c, so one inclusion of each can be removed. Reported-by: Abaci Robot Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=8937 Signed-off-by: Yang Li --- drivers/hwtracing/coresight/coresight-tmc-core.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/hwtracing/coresight/coresight-tmc-core.c b/drivers/hwtracing/coresight/coresight-tmc-core.c index 4f11a739ae4d..b54562f392f3 100644 --- a/drivers/hwtracing/coresight/coresight-tmc-core.c +++ b/drivers/hwtracing/coresight/coresight-tmc-core.c @@ -26,7 +26,6 @@ #include #include #include -#include #include "coresight-priv.h" #include "coresight-tmc.h"