From patchwork Thu Dec 20 15:56:52 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: 207679 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 727B02C0092 for ; Fri, 21 Dec 2012 02:56:55 +1100 (EST) Received: from localhost ([127.0.0.1] helo=chlorine.canonical.com) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1TliUQ-00054b-9L; Thu, 20 Dec 2012 15:56:54 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1TliUO-00054W-Ph for fwts-devel@lists.ubuntu.com; Thu, 20 Dec 2012 15:56:52 +0000 Received: from cpc3-craw6-2-0-cust180.croy.cable.virginmedia.com ([77.100.248.181] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1TliUO-00089v-NW for fwts-devel@lists.ubuntu.com; Thu, 20 Dec 2012 15:56:52 +0000 From: Colin King To: fwts-devel@lists.ubuntu.com Subject: [PATCH] acpi: pcc: fix some stupid typos Date: Thu, 20 Dec 2012 15:56:52 +0000 Message-Id: <1356019012-22625-1-git-send-email-colin.king@canonical.com> X-Mailer: git-send-email 1.8.0 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 Fix a couple of spelling mistakes made by myself. Signed-off-by: Colin Ian King Acked-by: Alex Hung Acked-by: Keng-Yu Lin --- src/acpi/pcc/pcc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/acpi/pcc/pcc.c b/src/acpi/pcc/pcc.c index 8741e0b..078601b 100644 --- a/src/acpi/pcc/pcc.c +++ b/src/acpi/pcc/pcc.c @@ -213,7 +213,7 @@ static void pcc_check_shared_memory_region( if (pcc_mr->minimum & 4095) { fwts_failed(fw, LOG_LEVEL_HIGH, "PCCMemoryNotPageAligned", - "PCC Memory Resource Minumum Address is not page aligned. It must " + "PCC Memory Resource Minimum Address is not page aligned. It must " "start on a 4K page boundary."); *failed = true; } @@ -403,7 +403,7 @@ static void pcc_check_buffer( pcc_check_doorbell_write_mask(fw, name, &obj->Package.Elements[3], &failed); if (!failed) - fwts_passed(fw, "PCC pased; %s returned sane looking data structures.", name); + fwts_passed(fw, "PCC passed; %s returned sane looking data structures.", name); } static int pcc_test1(fwts_framework *fw)