From patchwork Sat Dec 4 09:09:33 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christophe JAILLET X-Patchwork-Id: 12694769 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 A5CC1C433F5 for ; Sat, 4 Dec 2021 09:11:30 +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=kuJFzH2PpwB7vbIyt9sgDvLoVYsZisLG8ffT43xAdZo=; b=11NQK8LhlLpIKM OKppx7JGe5eL9W49KD/VtKrvZnb1nvaUjLh4RpZqkNZRJBaYsACuHgosUU8FIBwake7TGA6Z5dQnM +iectrmSSg0/5PbNuMgeiQCCOKqKjWH/NXKsaAHDXUQ6+OIvnqAYgPhCg6TPXnCxfQM8lpvq5GBNY 5snaqMV+eXvTxUzsb+u1gipSlLWLIxCHhPZRt+YJYmEaUUfQdJClQjDuwmHnh2EJm9H1DO1Xsbg34 Gq3vc8LUQJKwsavLxT6dXNa/2CiLpKsYTYpUMFUkrRtfmlSrzFqkhEEtZ67TuqTzODh1OsAN2AwIY olB9TPsW8zO0YuSLX5Lg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mtR3E-0009Ik-0G; Sat, 04 Dec 2021 09:09:48 +0000 Received: from smtp03.smtpout.orange.fr ([80.12.242.125] helo=smtp.smtpout.orange.fr) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1mtR3A-0009Ho-6w for linux-arm-kernel@lists.infradead.org; Sat, 04 Dec 2021 09:09:45 +0000 Received: from pop-os.home ([86.243.171.122]) by smtp.orange.fr with ESMTPA id tR32mObqLUGqltR32mdi2U; Sat, 04 Dec 2021 10:09:37 +0100 X-ME-Helo: pop-os.home X-ME-Auth: YWZlNiIxYWMyZDliZWIzOTcwYTEyYzlhMmU3ZiQ1M2U2MzfzZDfyZTMxZTBkMTYyNDBjNDJlZmQ3ZQ== X-ME-Date: Sat, 04 Dec 2021 10:09:37 +0100 X-ME-IP: 86.243.171.122 From: Christophe JAILLET To: linux@armlinux.org.uk Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org, Christophe JAILLET Subject: [PATCH] ARM: l2c: tauros2: Fix a typo Date: Sat, 4 Dec 2021 10:09:33 +0100 Message-Id: <4d0a9df63e072f3da7f9e7cfa7b7733cef991504.1638608933.git.christophe.jaillet@wanadoo.fr> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20211204_010944_435719_C5DCD3B4 X-CRM114-Status: GOOD ( 10.73 ) 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 s/tauros/tauros2/ so that the message matches the property that is looked at. Signed-off-by: Christophe JAILLET --- arch/arm/mm/cache-tauros2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mm/cache-tauros2.c b/arch/arm/mm/cache-tauros2.c index 88255bea65e4..ae4858928fa7 100644 --- a/arch/arm/mm/cache-tauros2.c +++ b/arch/arm/mm/cache-tauros2.c @@ -295,7 +295,7 @@ void __init tauros2_init(unsigned int features) } else { ret = of_property_read_u32(node, "marvell,tauros2-cache-features", &f); if (ret) { - pr_info("Not found marvell,tauros-cache-features property, " + pr_info("Not found marvell,tauros2-cache-features property, " "disable extra features\n"); features = 0; } else