Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753208AbdI0N5i (ORCPT ); Wed, 27 Sep 2017 09:57:38 -0400 Received: from mail.cn.fujitsu.com ([183.91.158.132]:9880 "EHLO heian.cn.fujitsu.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752949AbdI0N5h (ORCPT ); Wed, 27 Sep 2017 09:57:37 -0400 X-IronPort-AV: E=Sophos;i="5.42,445,1500912000"; d="scan'208";a="28487457" Subject: Re: [PATCH][next] x86/apic: fix spelling mistake: "symmectic" -> "symmetric" To: Colin King , Thomas Gleixner , Ingo Molnar , "H . Peter Anvin" , References: <20170927102223.31920-1-colin.king@canonical.com> CC: From: Dou Liyang Message-ID: <51ee8b7b-a87e-ab99-9c50-0e8c6810dba3@cn.fujitsu.com> Date: Wed, 27 Sep 2017 21:57:31 +0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 In-Reply-To: <20170927102223.31920-1-colin.king@canonical.com> Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: [10.167.226.106] X-yoursite-MailScanner-ID: 8996146BA7AC.A92F8 X-yoursite-MailScanner: Found to be clean X-yoursite-MailScanner-From: douly.fnst@cn.fujitsu.com Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1079 Lines: 38 Hi Colin, At 09/27/2017 06:22 PM, Colin King wrote: > From: Colin Ian King > > Trivial fix to spelling mistakes in pr_info messages > > Signed-off-by: Colin Ian King > --- > arch/x86/kernel/apic/apic.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c > index ca5ec3fddc49..a1ca2c08f532 100644 > --- a/arch/x86/kernel/apic/apic.c > +++ b/arch/x86/kernel/apic/apic.c > @@ -1296,11 +1296,11 @@ void __init apic_intr_mode_init(void) > default_setup_apic_routing(); > break; > case APIC_SYMMETRIC_IO: > - pr_info("APIC: Switch to symmectic I/O mode setup\n"); > + pr_info("APIC: Switch to symmetric I/O mode setup\n"); > default_setup_apic_routing(); > break; > case APIC_SYMMETRIC_IO_NO_ROUTING: > - pr_info("APIC: Switch to symmectic I/O mode setup in no SMP routine\n"); > + pr_info("APIC: Switch to symmetric I/O mode setup in no SMP routine\n"); Oops, Yes, thank you very much! Thanks, dou > break; > } > >