From nobody Mon Oct 24 16:03:58 2022 X-Original-To: dev-commits-src-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4Mx0Hp7207z4g4Fc; Mon, 24 Oct 2022 16:04:06 +0000 (UTC) (envelope-from glebius@freebsd.org) Received: from cell.glebi.us (glebi.us [162.251.186.162]) (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 (2048 bits) client-digest SHA256) (Client CN "cell.glebi.us", Issuer "cell.glebi.us" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Mx0Hn1cstz3cXj; Mon, 24 Oct 2022 16:04:05 +0000 (UTC) (envelope-from glebius@freebsd.org) Received: from cell.glebi.us (localhost [127.0.0.1]) by cell.glebi.us (8.16.1/8.16.1) with ESMTPS id 29OG3wBr019235 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NO); Mon, 24 Oct 2022 09:03:58 -0700 (PDT) (envelope-from glebius@freebsd.org) Received: (from glebius@localhost) by cell.glebi.us (8.16.1/8.16.1/Submit) id 29OG3w0C019234; Mon, 24 Oct 2022 09:03:58 -0700 (PDT) (envelope-from glebius@freebsd.org) X-Authentication-Warning: cell.glebi.us: glebius set sender to glebius@freebsd.org using -f Date: Mon, 24 Oct 2022 09:03:58 -0700 From: Gleb Smirnoff To: src-committers@freebsd.org, dev-commits-src-all@freebsd.org, dev-commits-src-main@freebsd.org Subject: Re: git: ba23f762ece5 - main - acpi_ged: fix build with ACPI_DEBUG Message-ID: References: <202210241603.29OG358o026794@gitrepo.freebsd.org> List-Id: Commit messages for all branches of the src repository List-Archive: https://lists.freebsd.org/archives/dev-commits-src-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-src-all@freebsd.org X-BeenThere: dev-commits-src-all@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <202210241603.29OG358o026794@gitrepo.freebsd.org> X-Rspamd-Queue-Id: 4Mx0Hn1cstz3cXj X-Spamd-Bar: --- Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=none; spf=softfail (mx1.freebsd.org: 162.251.186.162 is neither permitted nor denied by domain of glebius@freebsd.org) smtp.mailfrom=glebius@freebsd.org X-Spamd-Result: default: False [-3.10 / 15.00]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-1.000]; MIME_GOOD(-0.10)[text/plain]; MLMMJ_DEST(0.00)[dev-commits-src-all@freebsd.org,dev-commits-src-main@freebsd.org]; ARC_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; RCVD_COUNT_THREE(0.00)[3]; ASN(0.00)[asn:27348, ipnet:162.251.186.0/24, country:US]; MIME_TRACE(0.00)[0:+]; DMARC_NA(0.00)[freebsd.org]; R_SPF_SOFTFAIL(0.00)[~all:c]; TO_DN_NONE(0.00)[]; FROM_HAS_DN(0.00)[]; FREEFALL_USER(0.00)[glebius]; RCVD_TLS_LAST(0.00)[]; RCPT_COUNT_THREE(0.00)[3]; HAS_XAW(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MID_RHS_MATCH_FROM(0.00)[] X-ThisMailContainsUnwantedMimeParts: N On Mon, Oct 24, 2022 at 04:03:05PM +0000, Gleb Smirnoff wrote: T> commit ba23f762ece54a86f64b8ef62bbfc9c73c98762c T> Author: Gleb Smirnoff T> AuthorDate: 2022-10-24 16:00:04 +0000 T> Commit: Gleb Smirnoff T> CommitDate: 2022-10-24 16:00:04 +0000 T> T> acpi_ged: fix build with ACPI_DEBUG T> --- T> sys/dev/acpica/acpi_ged.c | 2 +- T> 1 file changed, 1 insertion(+), 1 deletion(-) T> T> diff --git a/sys/dev/acpica/acpi_ged.c b/sys/dev/acpica/acpi_ged.c T> index 8ee56c8b0335..83e0f51161c1 100644 T> --- a/sys/dev/acpica/acpi_ged.c T> +++ b/sys/dev/acpica/acpi_ged.c T> @@ -40,7 +40,7 @@ __FBSDID("$FreeBSD$"); T> #include T> T> /* Hooks for the ACPI CA debugging infrastructure */ T> -#define _COMPONENT ACPI_GED T> +#define _COMPONENT ACPI_BUS T> ACPI_MODULE_NAME("GED") I'm not sure this is the best fix. I just wanted to make all LINTs buildable. Maybe we need new entry in acpivar.h. I'll leave that to experts. -- Gleb Smirnoff