mirror of
https://git.freebsd.org/src.git
synced 2026-01-12 06:54:03 +00:00
tpm: fix the conditional for the arm64 build
The intention was clearly that these ACPI bits would be included for
arm64, but MACHINE_ARCH there is aarch64 -- correct the minor typo to
build everything that should be there.
Fixes: c2e9c5bbf0 ("tpm: Refactor TIS and add a SPI attachment")
This commit is contained in:
parent
cca34aa1d0
commit
c490bc73eb
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ SRCS+= tpm20.c tpm_tis_core.c
|
|||
.if defined(${OPT_FDT})
|
||||
SRCS+= tpm_spibus.c tpm_tis_spibus.c spibus_if.h
|
||||
.endif
|
||||
.if ${MACHINE_ARCH:Namd64:Ni386:Narm64} == ""
|
||||
.if ${MACHINE_ARCH:Namd64:Ni386:Naarch64} == ""
|
||||
SRCS+= acpi_if.h
|
||||
SRCS+= tpm_tis_acpi.c
|
||||
SRCS+= tpm_crb.c
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue