From patchwork Fri Jun 12 16:56:57 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alex Hung X-Patchwork-Id: 1308413 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=fwts-devel-bounces@lists.ubuntu.com; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=canonical.com Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 49k6Mt5Lc9z9sRN; Sat, 13 Jun 2020 02:57:14 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1jjmzQ-0007tx-8n; Fri, 12 Jun 2020 16:57:12 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by huckleberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1jjmzO-0007sr-Np for fwts-devel@lists.ubuntu.com; Fri, 12 Jun 2020 16:57:10 +0000 Received: from 2.general.alexhung.us.vpn ([10.172.65.255] helo=canonical.com) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1jjmzE-00074E-RR; Fri, 12 Jun 2020 16:57:01 +0000 From: Alex Hung To: fwts-devel@lists.ubuntu.com Subject: [PATCH] acpi/devices: fix typos in comments Date: Fri, 12 Jun 2020 10:56:57 -0600 Message-Id: <20200612165657.61291-1-alex.hung@canonical.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: fwts-devel-bounces@lists.ubuntu.com Sender: "fwts-devel" There aren't any functional changes. Signed-off-by: Alex Hung Acked-by: Colin Ian King Acked-by: Ivan Hu --- src/acpi/devices/ac_adapter/ac.c | 2 +- src/acpi/devices/battery/battery.c | 2 +- src/acpi/devices/battery/smart_battery.c | 2 +- src/acpi/devices/buttons/power_button.c | 2 +- src/acpi/devices/buttons/sleep_button.c | 2 +- src/acpi/devices/ec/ec.c | 2 +- src/acpi/devices/lid/lid.c | 2 +- src/acpi/devices/sensor/als.c | 2 +- src/acpi/devices/time/time.c | 2 +- src/acpi/devices/wpc/wpc.c | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/acpi/devices/ac_adapter/ac.c b/src/acpi/devices/ac_adapter/ac.c index 2a07c313..484bc476 100644 --- a/src/acpi/devices/ac_adapter/ac.c +++ b/src/acpi/devices/ac_adapter/ac.c @@ -189,7 +189,7 @@ static int method_test_PRL(fwts_framework *fw) &device, "_PRL", NULL, 0, method_test_PRL_return, NULL); } -/* EvaluateD evice Identification Objects - all are optional */ +/* Evaluate Device Identification Objects - all are optional */ static int method_test_ADR(fwts_framework *fw) { return fwts_method_test_ADR(fw, &device); diff --git a/src/acpi/devices/battery/battery.c b/src/acpi/devices/battery/battery.c index 400f485b..9d6744ae 100644 --- a/src/acpi/devices/battery/battery.c +++ b/src/acpi/devices/battery/battery.c @@ -677,7 +677,7 @@ static int method_test_BMC(fwts_framework *fw) return FWTS_OK; } -/* EvaluateD evice Identification Objects - all are optional */ +/* Evaluate Device Identification Objects - all are optional */ static int method_test_ADR(fwts_framework *fw) { return fwts_method_test_ADR(fw, &device); diff --git a/src/acpi/devices/battery/smart_battery.c b/src/acpi/devices/battery/smart_battery.c index bf3f4043..395e2e88 100644 --- a/src/acpi/devices/battery/smart_battery.c +++ b/src/acpi/devices/battery/smart_battery.c @@ -121,7 +121,7 @@ static int method_test_SBS(fwts_framework *fw) "_SBS", NULL, 0, method_test_SBS_return, NULL); } -/* EvaluateD evice Identification Objects - all are optional */ +/* Evaluate Device Identification Objects - all are optional */ static int method_test_ADR(fwts_framework *fw) { return fwts_method_test_ADR(fw, &device); diff --git a/src/acpi/devices/buttons/power_button.c b/src/acpi/devices/buttons/power_button.c index d69a1a12..ed14a6ea 100644 --- a/src/acpi/devices/buttons/power_button.c +++ b/src/acpi/devices/buttons/power_button.c @@ -81,7 +81,7 @@ static int method_test_HID(fwts_framework *fw) return fwts_method_test_HID(fw, &device); } -/* EvaluateD evice Identification Objects - all are optional */ +/* Evaluate Device Identification Objects - all are optional */ static int method_test_ADR(fwts_framework *fw) { return fwts_method_test_ADR(fw, &device); diff --git a/src/acpi/devices/buttons/sleep_button.c b/src/acpi/devices/buttons/sleep_button.c index 39a7d558..0c06a620 100644 --- a/src/acpi/devices/buttons/sleep_button.c +++ b/src/acpi/devices/buttons/sleep_button.c @@ -80,7 +80,7 @@ static int method_test_HID(fwts_framework *fw) return fwts_method_test_HID(fw, &device); } -/* EvaluateD evice Identification Objects - all are optional */ +/* Evaluate Device Identification Objects - all are optional */ static int method_test_ADR(fwts_framework *fw) { return fwts_method_test_ADR(fw, &device); diff --git a/src/acpi/devices/ec/ec.c b/src/acpi/devices/ec/ec.c index 1db1d8a5..c42d2a32 100644 --- a/src/acpi/devices/ec/ec.c +++ b/src/acpi/devices/ec/ec.c @@ -180,7 +180,7 @@ static int method_test_CRS(fwts_framework *fw) "_CRS", NULL, 0, method_test_CRS_return, NULL); } -/* EvaluateD evice Identification Objects - all are optional */ +/* Evaluate Device Identification Objects - all are optional */ static int method_test_ADR(fwts_framework *fw) { return fwts_method_test_ADR(fw, &device); diff --git a/src/acpi/devices/lid/lid.c b/src/acpi/devices/lid/lid.c index e76914cc..687f8cac 100644 --- a/src/acpi/devices/lid/lid.c +++ b/src/acpi/devices/lid/lid.c @@ -189,7 +189,7 @@ static int method_test_PSW(fwts_framework *fw) &device, "_PSW", arg, 1, fwts_method_test_NULL_return, NULL); } -/* EvaluateD evice Identification Objects - all are optional */ +/* Evaluate Device Identification Objects - all are optional */ static int method_test_ADR(fwts_framework *fw) { return fwts_method_test_ADR(fw, &device); diff --git a/src/acpi/devices/sensor/als.c b/src/acpi/devices/sensor/als.c index 5cb712bf..7fbebde2 100644 --- a/src/acpi/devices/sensor/als.c +++ b/src/acpi/devices/sensor/als.c @@ -164,7 +164,7 @@ static int method_test_ALP(fwts_framework *fw) "_ALP", NULL, 0, fwts_method_test_polling_return, "_ALP"); } -/* EvaluateD evice Identification Objects - all are optional */ +/* Evaluate Device Identification Objects - all are optional */ static int method_test_ADR(fwts_framework *fw) { return fwts_method_test_ADR(fw, &device); diff --git a/src/acpi/devices/time/time.c b/src/acpi/devices/time/time.c index 4f776cf6..bdc3ace1 100644 --- a/src/acpi/devices/time/time.c +++ b/src/acpi/devices/time/time.c @@ -302,7 +302,7 @@ static int method_test_TIV(fwts_framework *fw) "_TIV", arg, 1, fwts_method_test_integer_return, NULL); } -/* EvaluateD evice Identification Objects - all are optional */ +/* Evaluate Device Identification Objects - all are optional */ static int method_test_ADR(fwts_framework *fw) { return fwts_method_test_ADR(fw, &device); diff --git a/src/acpi/devices/wpc/wpc.c b/src/acpi/devices/wpc/wpc.c index 516ce970..6599180d 100644 --- a/src/acpi/devices/wpc/wpc.c +++ b/src/acpi/devices/wpc/wpc.c @@ -109,7 +109,7 @@ static int method_test_WPP(fwts_framework *fw) "_WPP", NULL, 0, fwts_method_test_integer_return, NULL); } -/* EvaluateD evice Identification Objects - all are optional */ +/* Evaluate Device Identification Objects - all are optional */ static int method_test_ADR(fwts_framework *fw) { return fwts_method_test_ADR(fw, &device);