diff options
author | Martin Roth <martinroth@google.com> | 2017-07-13 11:05:35 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-07-16 19:22:33 +0000 |
commit | 5998198f0c2dc055b2573ad95f03774e755ca3db (patch) | |
tree | 4cce06cff492ca50aefba21f721e9f3ae641f5fa /src/soc/amd/stoneyridge/fadt.c | |
parent | 99aa6ce053f5122a98713b8353de6b8a72182cad (diff) | |
download | coreboot-5998198f0c2dc055b2573ad95f03774e755ca3db.tar.xz |
soc/amd/stoneyridge:Fix IS_ENABLED() around Kconfig symbol references
- Update files that were added since the IS_ENABLED() fix patches
- Remove extra XHCI controller.
Change-Id: I7028942ce54b06cd048029f7b93f064beba579ad
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/20565
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/soc/amd/stoneyridge/fadt.c')
-rw-r--r-- | src/soc/amd/stoneyridge/fadt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/stoneyridge/fadt.c b/src/soc/amd/stoneyridge/fadt.c index fb3410c961..f369651f06 100644 --- a/src/soc/amd/stoneyridge/fadt.c +++ b/src/soc/amd/stoneyridge/fadt.c @@ -25,7 +25,7 @@ #include <soc/hudson.h> #include <soc/smi.h> -#if CONFIG_STONEYRIDGE_LEGACY_FREE +#if IS_ENABLED(CONFIG_STONEYRIDGE_LEGACY_FREE) #define FADT_BOOT_ARCH ACPI_FADT_LEGACY_FREE #else #define FADT_BOOT_ARCH (ACPI_FADT_LEGACY_DEVICES | ACPI_FADT_8042) |