Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752701AbdI1KZy (ORCPT ); Thu, 28 Sep 2017 06:25:54 -0400 Received: from terminus.zytor.com ([65.50.211.136]:58923 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751082AbdI1KZx (ORCPT ); Thu, 28 Sep 2017 06:25:53 -0400 Date: Thu, 28 Sep 2017 03:24:42 -0700 From: tip-bot for Colin Ian King Message-ID: Cc: mingo@kernel.org, linux-kernel@vger.kernel.org, hpa@zytor.com, douly.fnst@cn.fujitsu.com, tglx@linutronix.de, colin.king@canonical.com Reply-To: mingo@kernel.org, linux-kernel@vger.kernel.org, hpa@zytor.com, douly.fnst@cn.fujitsu.com, colin.king@canonical.com, tglx@linutronix.de In-Reply-To: <20170927102223.31920-1-colin.king@canonical.com> References: <20170927102223.31920-1-colin.king@canonical.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/apic] x86/apic: Fix spelling mistake: "symmectic" -> "symmetric" Git-Commit-ID: 79761ce80aa0232157e428bde28c0cef6d43ac5f X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1428 Lines: 38 Commit-ID: 79761ce80aa0232157e428bde28c0cef6d43ac5f Gitweb: https://git.kernel.org/tip/79761ce80aa0232157e428bde28c0cef6d43ac5f Author: Colin Ian King AuthorDate: Wed, 27 Sep 2017 11:22:23 +0100 Committer: Thomas Gleixner CommitDate: Thu, 28 Sep 2017 12:22:40 +0200 x86/apic: Fix spelling mistake: "symmectic" -> "symmetric" Trivial fix to spelling mistakes in pr_info messages Signed-off-by: Colin Ian King Signed-off-by: Thomas Gleixner Cc: Dou Liyang Link: https://lkml.kernel.org/r/20170927102223.31920-1-colin.king@canonical.com --- 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 ca5ec3f..a1ca2c0 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"); break; }