From patchwork Mon Jul 23 17:30:49 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Colin Ian King X-Patchwork-Id: 172727 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from chlorine.canonical.com (chlorine.canonical.com [91.189.94.204]) by ozlabs.org (Postfix) with ESMTP id C21A42C00D2 for ; Tue, 24 Jul 2012 03:30:52 +1000 (EST) Received: from localhost ([127.0.0.1] helo=chlorine.canonical.com) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1StMT5-0000kB-G9 for incoming@patchwork.ozlabs.org; Mon, 23 Jul 2012 17:30:51 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1StMT4-0000jx-6e for fwts-devel@lists.ubuntu.com; Mon, 23 Jul 2012 17:30:50 +0000 Received: from cpc37-craw6-2-0-cust191.16-3.cable.virginmedia.com ([92.239.39.192] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1StMT4-0002KS-4W for fwts-devel@lists.ubuntu.com; Mon, 23 Jul 2012 17:30:50 +0000 From: Colin King To: fwts-devel@lists.ubuntu.com Subject: [PATCH] bios: mtrr: fix stupid typos Date: Mon, 23 Jul 2012 18:30:49 +0100 Message-Id: <1343064649-10217-1-git-send-email-colin.king@canonical.com> X-Mailer: git-send-email 1.7.10.4 X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.13 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: fwts-devel-bounces@lists.ubuntu.com Errors-To: fwts-devel-bounces@lists.ubuntu.com From: Colin Ian King Signed-off-by: Colin Ian King Acked-by: Keng-Yu Lin Acked-by: Ivan Hu --- src/bios/mtrr/mtrr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bios/mtrr/mtrr.c b/src/bios/mtrr/mtrr.c index 4da0fda..4818c64 100644 --- a/src/bios/mtrr/mtrr.c +++ b/src/bios/mtrr/mtrr.c @@ -567,17 +567,17 @@ static int mtrr_test2(fwts_framework *fw) int failed = 0; if (fwts_klog_regex_find(fw, klog, "mtrr: your CPUs had inconsistent fixed MTRR settings") > 0) { - fwts_log_info(fw, "Detected CPUs with inconsitent fixed MTRR settings which the kernel fixed."); + fwts_log_info(fw, "Detected CPUs with inconsistent fixed MTRR settings which the kernel fixed."); fwts_tag_failed(fw, FWTS_TAG_BIOS); failed = 1; } if (fwts_klog_regex_find(fw, klog, "mtrr: your CPUs had inconsistent variable MTRR settings") > 0) { - fwts_log_info(fw, "Detected CPUs with inconsitent variable MTRR settings which the kernel fixed."); + fwts_log_info(fw, "Detected CPUs with inconsistent variable MTRR settings which the kernel fixed."); fwts_tag_failed(fw, FWTS_TAG_BIOS); failed = 1; } if (fwts_klog_regex_find(fw, klog, "mtrr: your CPUs had inconsistent MTRRdefType") > 0) { - fwts_log_info(fw, "Detected CPUs with inconsitent variable MTRR settings which the kernel fixed."); + fwts_log_info(fw, "Detected CPUs with inconsistent variable MTRR settings which the kernel fixed."); fwts_tag_failed(fw, FWTS_TAG_BIOS); failed = 1; }