From patchwork Tue May 17 07:38:07 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 67926 Delivered-To: patch@linaro.org Received: by 10.140.92.199 with SMTP id b65csp1929487qge; Tue, 17 May 2016 00:37:51 -0700 (PDT) X-Received: by 10.194.6.164 with SMTP id c4mr38453892wja.133.1463470671351; Tue, 17 May 2016 00:37:51 -0700 (PDT) Return-Path: Received: from theia.denx.de (theia.denx.de. [85.214.87.163]) by mx.google.com with ESMTP id z10si24774811wmd.113.2016.05.17.00.37.51; Tue, 17 May 2016 00:37:51 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) client-ip=85.214.87.163; Authentication-Results: mx.google.com; dkim=neutral (body hash did not verify) header.i=@nifty.com; spf=pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) smtp.mailfrom=u-boot-bounces@lists.denx.de Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 100EDA75B9; Tue, 17 May 2016 09:37:43 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hc_GxG0CgwWw; Tue, 17 May 2016 09:37:42 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id D6FBFA771A; Tue, 17 May 2016 09:37:30 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 64365A7532 for ; Tue, 17 May 2016 09:37:19 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id M1QPi0F_Q0q1 for ; Tue, 17 May 2016 09:37:19 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from conuserg-10.nifty.com (conuserg-10.nifty.com [210.131.2.77]) by theia.denx.de (Postfix) with ESMTPS id 4DF78A7534 for ; Tue, 17 May 2016 09:37:13 +0200 (CEST) Received: from beagle.diag.org (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-10.nifty.com with ESMTP id u4H7b1fo006885; Tue, 17 May 2016 16:37:04 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-10.nifty.com u4H7b1fo006885 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1463470624; bh=y5p8DbANp+SY02zWXZoAqLXDM2vf8Fd0S8oXIN7D5Gs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=jDSzVX3lw/PqDjhPIpNyf2iAmC6oZAjHEEx3nvmA0BZwX238QTf8gUlqHS6ZrNoJX GGEi+Y7R+FgviDZQ2G8trm+lSD/+eZmQE9+3CrnAIjNiAOQLElRukcRwgxboLHetUv qCW//fF+8ei1NLO2VXJaAXHfqIqPauOJBXjsMqPXsqi7R9oB+7o2/SP84cDfbH4i3M mQkNPwNsvbN6pGxIlxjCsP1Ixp+0fW2J9iVdR/L2DHVDulGfHSzHFa8+dY043gUPpU sk1BSCnf1KExhDAcA5JmAEeqbC4Cc64MU5VyXmXosPEwREVH44xy9Na0wo0iNCyLRF QlrbBQ4xs0sKA== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Tue, 17 May 2016 16:38:07 +0900 Message-Id: <1463470688-13772-3-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1463470688-13772-1-git-send-email-yamada.masahiro@socionext.com> References: <1463470688-13772-1-git-send-email-yamada.masahiro@socionext.com> Subject: [U-Boot] [PATCH 2/3] arm64: fix comment "flush & invalidate" X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" We should say "clean & invalidate", or simply "flush". Signed-off-by: Masahiro Yamada --- arch/arm/cpu/armv8/cache.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- 1.9.1 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot diff --git a/arch/arm/cpu/armv8/cache.S b/arch/arm/cpu/armv8/cache.S index 1c71a2f..6aaecf3 100644 --- a/arch/arm/cpu/armv8/cache.S +++ b/arch/arm/cpu/armv8/cache.S @@ -19,7 +19,7 @@ * clean and invalidate one level cache. * * x0: cache level - * x1: 0 flush & invalidate, 1 invalidate only + * x1: 0 clean & invalidate, 1 invalidate only * x2~x9: clobbered */ ENTRY(__asm_flush_dcache_level) @@ -62,7 +62,7 @@ ENDPROC(__asm_flush_dcache_level) /* * void __asm_flush_dcache_all(int invalidate_only) * - * x0: 0 flush & invalidate, 1 invalidate only + * x0: 0 clean & invalidate, 1 invalidate only * * clean and invalidate all data cache by SET/WAY. */