git: bd4ee4ead167 - stable/13 - modules: iichid: needs opt_acpi.h
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 06 Oct 2021 07:11:53 UTC
The branch stable/13 has been updated by kevans: URL: https://cgit.FreeBSD.org/src/commit/?id=bd4ee4ead167259a784f0fb76c58e6c2f1fc53bd commit bd4ee4ead167259a784f0fb76c58e6c2f1fc53bd Author: Kyle Evans <kevans@FreeBSD.org> AuthorDate: 2021-09-30 03:47:15 +0000 Commit: Kyle Evans <kevans@FreeBSD.org> CommitDate: 2021-10-06 07:10:54 +0000 modules: iichid: needs opt_acpi.h This fixes the standalone build. (cherry picked from commit 335c4f8edb3a02ea101b0f833c22182594e63c9e) --- sys/modules/i2c/iichid/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/modules/i2c/iichid/Makefile b/sys/modules/i2c/iichid/Makefile index 36cdb3127088..a6affe1d76fc 100644 --- a/sys/modules/i2c/iichid/Makefile +++ b/sys/modules/i2c/iichid/Makefile @@ -3,6 +3,7 @@ .PATH: ${SRCTOP}/sys/dev/iicbus KMOD = iichid SRCS = iichid.c -SRCS += acpi_if.h bus_if.h device_if.h hid_if.h iicbus_if.h opt_hid.h +SRCS += acpi_if.h bus_if.h device_if.h hid_if.h iicbus_if.h +SRCS += opt_acpi.h opt_hid.h .include <bsd.kmod.mk>