mirror of
https://github.com/opnsense/src.git
synced 2026-02-24 18:30:55 -05:00
Add ACPI part for ig4 driver to make it work on Intel BayTrail SoC where ig4 device is available only through ACPI Reviewed by: avg MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D8742
13 lines
331 B
Makefile
13 lines
331 B
Makefile
#$FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../../../dev/ichiic
|
|
KMOD = ig4
|
|
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>
|