diff options
| author | Oleksandr Tymoshenko <gonzo@FreeBSD.org> | 2016-12-26 22:13:43 +0000 |
|---|---|---|
| committer | Oleksandr Tymoshenko <gonzo@FreeBSD.org> | 2016-12-26 22:13:43 +0000 |
| commit | 5c5bcb1d70a6cfb4b8a427640680e48ead4b9c0a (patch) | |
| tree | d1f72d5c4b7b610cd9680b819ebec29b9582952e /sys/modules/i2c/controllers | |
| parent | fd30dd7c260cbe06fff595ee6b0f8ece001947f7 (diff) | |
Notes
Diffstat (limited to 'sys/modules/i2c/controllers')
| -rw-r--r-- | sys/modules/i2c/controllers/ichiic/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/modules/i2c/controllers/ichiic/Makefile b/sys/modules/i2c/controllers/ichiic/Makefile index 1cebbebad59d..97db5e8e4c62 100644 --- a/sys/modules/i2c/controllers/ichiic/Makefile +++ b/sys/modules/i2c/controllers/ichiic/Makefile @@ -2,7 +2,12 @@ .PATH: ${.CURDIR}/../../../../dev/ichiic KMOD = ig4 -SRCS = device_if.h bus_if.h iicbus_if.h pci_if.h smbus_if.h \ - ig4_iic.c ig4_pci.c ig4_reg.h ig4_var.h +SRCS = acpi_if.h device_if.h bus_if.h iicbus_if.h pci_if.h \ + smbus_if.h ${ig4_acpi} ig4_iic.c ig4_pci.c ig4_reg.h \ + ig4_var.h opt_acpi.h + +.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386" +ig4_acpi= ig4_acpi.c +.endif .include <bsd.kmod.mk> |
