enable ig4_acpi on aarch64

The already-listed APMC0D0F ID belongs to the Ampere eMAG aarch64
platform, but ACPI support was not even built on aarch64.

Submitted by:	Greg V <greg_unrelenting.technology>
Differential Revision:	https://reviews.freebsd.org/D21059
This commit is contained in:
Ed Maste 2019-07-24 21:26:17 +00:00
parent 55ce8dc00f
commit 5e3ccbd9ac
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=350303

View File

@ -6,7 +6,8 @@ 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"
.if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "amd64" || \
${MACHINE_CPUARCH} == "i386"
ig4_acpi= ig4_acpi.c
.endif