From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756139Ab3L3Rss (ORCPT ); Mon, 30 Dec 2013 12:48:48 -0500 Received: from merlin.infradead.org ([205.233.59.134]:35736 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755634Ab3L3Rsr (ORCPT ); Mon, 30 Dec 2013 12:48:47 -0500 Message-ID: <52C1B1FC.6030703@infradead.org> Date: Mon, 30 Dec 2013 09:48:44 -0800 From: Randy Dunlap User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.0 MIME-Version: 1.0 To: Hayato Suzuki , trivial@kernel.org CC: linux-kernel@vger.kernel.org Subject: Re: [PATCH] [trivial] treewide:Fix typo Kconfig References: <52BF72E1.9030207@infradead.org> <1388421772-3149-1-git-send-email-hytszk@gmail.com> In-Reply-To: <1388421772-3149-1-git-send-email-hytszk@gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 12/30/13 08:42, Hayato Suzuki wrote: > Correct spelling typo in Kconfig. > > Signed-off-by: Hayato Suzuki Acked-by: Randy Dunlap Thanks. > --- > arch/x86/crypto/aesni-intel_avx.S | 8 ++++---- > crypto/Kconfig | 2 +- > init/Kconfig | 2 +- > 3 files changed, 6 insertions(+), 6 deletions(-) > > diff --git a/arch/x86/crypto/aesni-intel_avx.S b/arch/x86/crypto/aesni-intel_avx.S > index 522ab68..3f202c2 100644 > --- a/arch/x86/crypto/aesni-intel_avx.S > +++ b/arch/x86/crypto/aesni-intel_avx.S > @@ -1282,7 +1282,7 @@ _zero_cipher_left\@: > > je _multiple_of_16_bytes\@ > > - # handle the last <16 Byte block seperately > + # handle the last <16 Byte block separately > > > vpaddd ONE(%rip), %xmm9, %xmm9 # INCR CNT to get Yn > @@ -1308,7 +1308,7 @@ _only_less_than_16\@: > > je _multiple_of_16_bytes\@ > > - # handle the last <16 Byte block seperately > + # handle the last <16 Byte block separately > > > vpaddd ONE(%rip), %xmm9, %xmm9 # INCR CNT to get Yn > @@ -2559,7 +2559,7 @@ _zero_cipher_left\@: > > je _multiple_of_16_bytes\@ > > - # handle the last <16 Byte block seperately > + # handle the last <16 Byte block separately > > > vpaddd ONE(%rip), %xmm9, %xmm9 # INCR CNT to get Yn > @@ -2585,7 +2585,7 @@ _only_less_than_16\@: > > je _multiple_of_16_bytes\@ > > - # handle the last <16 Byte block seperately > + # handle the last <16 Byte block separately > > > vpaddd ONE(%rip), %xmm9, %xmm9 # INCR CNT to get Yn > diff --git a/crypto/Kconfig b/crypto/Kconfig > index 7bcb70d..ceb085e 100644 > --- a/crypto/Kconfig > +++ b/crypto/Kconfig > @@ -1120,7 +1120,7 @@ config CRYPTO_SERPENT_SSE2_X86_64 > Keys are allowed to be from 0 to 256 bits in length, in steps > of 8 bits. > > - This module provides Serpent cipher algorithm that processes eigth > + This module provides Serpent cipher algorithm that processes eight > blocks parallel using SSE2 instruction set. > > See also: > diff --git a/init/Kconfig b/init/Kconfig > index 8d402e3..46b5089 100644 > --- a/init/Kconfig > +++ b/init/Kconfig > @@ -523,7 +523,7 @@ config CONTEXT_TRACKING_FORCE > dynticks working. > > This option stands for testing when an arch implements the > - context tracking backend but doesn't yet fullfill all the > + context tracking backend but doesn't yet fulfill all the > requirements to make the full dynticks feature working. > Without the full dynticks, there is no way to test the support > for context tracking and the subsystems that rely on it: RCU > -- ~Randy