From mboxrd@z Thu Jan 1 00:00:00 1970 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 5B0FAC433F5 for ; Sat, 11 Dec 2021 09:05:51 +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=C7Usi1mjuEuEd7n62+JygUemiyqsyt+d+RhGHpybwAE=; b=BI13YOfj8IdV31 01N9GzUOsHG7u1iqPi4Y3qTzmrbTmOvhInUgRyC6usxrcelA9U8UczEEbEZGQ0aaXiexN6Byb7AkP 8ITzFizL509Bolf6OXChH6ixX6XZIiaNSzmQesyhTyOp5iX65wYtYVyre87cO3bDVXBoqjv1UUcyQ Gk94sHVuPgLCBGypuMqLlN4J4V+J+QMB/AGz5lkt6IKaeJY/3aQ+OPQ+pXNXpcjmrT7UwpS9FPKfA 7n8SK9ajD8lRi7Lui9ZqZnO2YdDaMGeijiNEbiBhQ+yV0v+ubP+4eiiQ0sTnX22Ze+f0OZ/Lu/NUt 0di8xwCHQvfa75Ejg79w==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mvyIg-004nUo-Af; Sat, 11 Dec 2021 09:04:14 +0000 Received: from smtpbg127.qq.com ([109.244.180.96] helo=smtpbg.qq.com) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1mvyIY-004nSs-0G for linux-arm-kernel@lists.infradead.org; Sat, 11 Dec 2021 09:04:11 +0000 X-QQ-mid: bizesmtp37t1639213344tpu7n3p3 Received: from localhost.localdomain (unknown [182.132.179.213]) by esmtp6.qq.com (ESMTP) with id ; Sat, 11 Dec 2021 17:02:22 +0800 (CST) X-QQ-SSF: 01000000008000D0H000B00A0000000 X-QQ-FEAT: hR9GyqeohSghM1ElQrnkgPt45yK/ReYtV8IATSrO12n/1LVzMECKREz9LKXxC Jj+Ww9DYFJb5BM0tEI+ngLwy2S4h2Fm759cFAoNFF+hFEHJaUSFY6zfw1t5TrIfln+XavwL pgZnhWWwI1y7a1Wm5nLtQBKcYz77nK78N2QlnttRcK7TzvRv+F5IKAxQWx6wKhdAd2u+W3W mf96YeNKKAYLaY0zNAHbkxe2xF7I8e1UcuGwcAxrewG3uea2U5lrMqmf6fewdb2/xedTn2/ pq2PDBVjnC6AbnR7BHD4fKk1umJGI+gGSiTaoFw0ChR69BnYsoUGGXIKOuFELAe+iFmvlJ3 quBpcTUednpYkItf51zypBYoXkdNS5ok+prynfl7wK0Afb9p0k= X-QQ-GoodBg: 0 From: Jason Wang To: suzuki.poulose@arm.com Cc: mathieu.poirier@linaro.org, alexander.shishkin@linux.intel.com, mike.leach@linaro.org, leo.yan@linaro.org, coresight@lists.linaro.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Jason Wang Subject: [PATCH] coresight: core: fix typo in a comment Date: Sat, 11 Dec 2021 17:02:21 +0800 Message-Id: <20211211090221.241529-1-wangborong@cdjrlc.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-QQ-SENDSIZE: 520 Feedback-ID: bizesmtp:cdjrlc.com:qybgspam:qybgspam1 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20211211_010406_482282_200D68CA X-CRM114-Status: GOOD ( 12.25 ) 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: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org The double `the' in the comment in line 732 is repeated. Remove one of them from the comment. Signed-off-by: Jason Wang --- drivers/hwtracing/coresight/coresight-core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/hwtracing/coresight/coresight-core.c b/drivers/hwtracing/coresight/coresight-core.c index 8a18c71df37a..88653d1c06a4 100644 --- a/drivers/hwtracing/coresight/coresight-core.c +++ b/drivers/hwtracing/coresight/coresight-core.c @@ -729,7 +729,7 @@ static inline void coresight_put_ref(struct coresight_device *csdev) * coresight_grab_device - Power up this device and any of the helper * devices connected to it for trace operation. Since the helper devices * don't appear on the trace path, they should be handled along with the - * the master device. + * master device. */ static int coresight_grab_device(struct coresight_device *csdev) { -- 2.34.1 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel