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 phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 75DF9C433EF for ; Wed, 16 Feb 2022 10:19:42 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 2296B83A63; Wed, 16 Feb 2022 11:19:33 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="fqkqeB+W"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 56AEB80F68; Wed, 16 Feb 2022 11:19:14 +0100 (CET) Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 78F0D83A54 for ; Wed, 16 Feb 2022 11:19:04 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=pali@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 1450F6192E; Wed, 16 Feb 2022 10:19:03 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5AA0AC340ED; Wed, 16 Feb 2022 10:19:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1645006742; bh=0yqNuVTo59ljjAJ76UTxb9EU9Ku94fg01ON7XsM1cWY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=fqkqeB+WH75UHtw16imTIOyRI5AC3m2u9rNMRYfE1mhoxwpWGq3m/OuQr1/vW1T8C z7sXp0yYTbITwzPVYOryDybLfRaK+sXalZMmAfrm4FZK9l9MmoIP/dv+t7DsHIXKRH a52aOZur1NWPut9U8yBHypKfgMyn5fHDPzcajI84GQ/Px/q9m4jjodzYGoEbLmY11n UwbtoF/T8Hp2c8wtw7f2/nXdEhsZIn5PwnoWUUhczvV1q/HrdJEw6MgLh8SUGngT/A nRLrba1PkZ4DiOPx1mhWODaH3CK6MhO2IQwhBKak4PLHNQOX+QW77NYm0xn8gVEybz YMANTsh763dWA== Received: by pali.im (Postfix) id 13EA77F4; Wed, 16 Feb 2022 11:19:02 +0100 (CET) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Stefan Roese , =?UTF-8?q?Marek=20Beh=C3=BAn?= Cc: u-boot@lists.denx.de Subject: [PATCH u-boot-mvebu v2 3/3] arm: mvebu: a37xx: Fix comment with name of the function Date: Wed, 16 Feb 2022 11:18:45 +0100 Message-Id: <20220216101845.18638-4-pali@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20220216101845.18638-1-pali@kernel.org> References: <20220214232835.12924-1-pali@kernel.org> <20220216101845.18638-1-pali@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.5 at phobos.denx.de X-Virus-Status: Clean Function is named build_mem_map, not a3700_build_mem_map. Signed-off-by: Pali Rohár Reviewed-by: Stefan Roese Reviewed-by: Marek Behún --- arch/arm/mach-mvebu/armada3700/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-mvebu/armada3700/cpu.c b/arch/arm/mach-mvebu/armada3700/cpu.c index e9bdc181ef02..23492f49dae3 100644 --- a/arch/arm/mach-mvebu/armada3700/cpu.c +++ b/arch/arm/mach-mvebu/armada3700/cpu.c @@ -63,7 +63,7 @@ static struct mm_region mvebu_mem_map[MAX_MEM_MAP_REGIONS] = { { /* * SRAM, MMIO regions - * Don't remove this, a3700_build_mem_map needs it. + * Don't remove this, build_mem_map needs it. */ .phys = SOC_REGS_PHY_BASE, .virt = SOC_REGS_PHY_BASE, -- 2.20.1