From owner-dev-commits-src-all@freebsd.org Mon Jul 19 16:19:32 2021 Return-Path: Delivered-To: dev-commits-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C19E6659B3B; Mon, 19 Jul 2021 16:19:32 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GT6Vr2xs3z3vMQ; Mon, 19 Jul 2021 16:19:32 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 493E41A413; Mon, 19 Jul 2021 16:19:32 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 16JGJWI2036088; Mon, 19 Jul 2021 16:19:32 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 16JGJWcr036087; Mon, 19 Jul 2021 16:19:32 GMT (envelope-from git) Date: Mon, 19 Jul 2021 16:19:32 GMT Message-Id: <202107191619.16JGJWcr036087@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Jessica Clarke Subject: git: 439097486ba0 - main - acpi: Fix a repeated comment typo MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: jrtc27 X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 439097486ba0453e057c05d548fa306d91c784e5 Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jul 2021 16:19:32 -0000 The branch main has been updated by jrtc27: URL: https://cgit.FreeBSD.org/src/commit/?id=439097486ba0453e057c05d548fa306d91c784e5 commit 439097486ba0453e057c05d548fa306d91c784e5 Author: Jessica Clarke AuthorDate: 2021-07-19 16:19:23 +0000 Commit: Jessica Clarke CommitDate: 2021-07-19 16:19:23 +0000 acpi: Fix a repeated comment typo --- sys/amd64/acpica/acpi_machdep.c | 2 +- sys/arm64/acpica/acpi_machdep.c | 2 +- sys/i386/acpica/acpi_machdep.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/amd64/acpica/acpi_machdep.c b/sys/amd64/acpica/acpi_machdep.c index 9bf4eb020f7a..a443c8693aa3 100644 --- a/sys/amd64/acpica/acpi_machdep.c +++ b/sys/amd64/acpica/acpi_machdep.c @@ -122,7 +122,7 @@ map_table(vm_paddr_t pa, const char *sig) /* * See if a given ACPI table is the requested table. Returns the - * length of the able if it matches or zero on failure. + * length of the table if it matches or zero on failure. */ static int probe_table(vm_paddr_t address, const char *sig) diff --git a/sys/arm64/acpica/acpi_machdep.c b/sys/arm64/acpica/acpi_machdep.c index d164ac250d4f..478da9ec49ec 100644 --- a/sys/arm64/acpica/acpi_machdep.c +++ b/sys/arm64/acpica/acpi_machdep.c @@ -91,7 +91,7 @@ map_table(vm_paddr_t pa, const char *sig) /* * See if a given ACPI table is the requested table. Returns the - * length of the able if it matches or zero on failure. + * length of the table if it matches or zero on failure. */ static int probe_table(vm_paddr_t address, const char *sig) diff --git a/sys/i386/acpica/acpi_machdep.c b/sys/i386/acpica/acpi_machdep.c index 3acf149dba11..ca18b6d11f68 100644 --- a/sys/i386/acpica/acpi_machdep.c +++ b/sys/i386/acpica/acpi_machdep.c @@ -140,7 +140,7 @@ map_table(vm_paddr_t pa, const char *sig) /* * See if a given ACPI table is the requested table. Returns the - * length of the able if it matches or zero on failure. + * length of the table if it matches or zero on failure. */ static int probe_table(vm_paddr_t address, const char *sig)