git: 237c69a9906e - main - acpi_einj: Add acpi_if.h to SRCS

From: Andrew Turner <andrew_at_FreeBSD.org>
Date: Mon, 13 Jul 2026 15:01:08 UTC
The branch main has been updated by andrew:

URL: https://cgit.FreeBSD.org/src/commit/?id=237c69a9906e21b9992585ec8477d8d1cd616b7a

commit 237c69a9906e21b9992585ec8477d8d1cd616b7a
Author:     Andrew Turner <andrew@FreeBSD.org>
AuthorDate: 2026-07-08 05:50:59 +0000
Commit:     Andrew Turner <andrew@FreeBSD.org>
CommitDate: 2026-07-08 06:13:43 +0000

    acpi_einj: Add acpi_if.h to SRCS
    
    This is included via acpivar.h so needs to be in SRCS to be generated.
    
    Reported by:    bz
    Fixes:  bc49842769bd ("acpi_einj: Support for ACPI error injection")
    Sponsored by:   Arm Ltd
---
 sys/modules/acpi/acpi_einj/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/modules/acpi/acpi_einj/Makefile b/sys/modules/acpi/acpi_einj/Makefile
index 14ff9ac1eac3..a4e23b37f08e 100644
--- a/sys/modules/acpi/acpi_einj/Makefile
+++ b/sys/modules/acpi/acpi_einj/Makefile
@@ -2,6 +2,6 @@
 
 KMOD=	acpi_einj
 SRCS=	acpi_einj.c
-SRCS+=	opt_acpi.h apei_if.h bus_if.h device_if.h
+SRCS+=	opt_acpi.h acpi_if.h apei_if.h bus_if.h device_if.h
 
 .include <bsd.kmod.mk>