diff options
author | Nico Huber <nico.h@gmx.de> | 2019-04-06 15:57:13 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2019-04-08 18:50:32 +0000 |
commit | e732773c7473b113b7cbad8611325b65cf96d8c7 (patch) | |
tree | fce9f4886dc8092e35b6e45112eace3163a6ba9a /src | |
parent | 1dde7ccfa8f405da2fe27d04e91dd6b29a9071bb (diff) | |
download | coreboot-e732773c7473b113b7cbad8611325b65cf96d8c7.tar.xz |
soc/amd/stoney: Don't use IS_ENABLED() for a constant
IS_ENABLED() was supposed for Kconfig options.
Change-Id: Ia40d64856cd89586133e54ff6e02c35d6b647059
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32225
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Julius Werner <jwerner@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/amd/stoneyridge/acpi/lpc.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/stoneyridge/acpi/lpc.asl b/src/soc/amd/stoneyridge/acpi/lpc.asl index e24514ce74..93b405619d 100644 --- a/src/soc/amd/stoneyridge/acpi/lpc.asl +++ b/src/soc/amd/stoneyridge/acpi/lpc.asl @@ -13,7 +13,7 @@ * GNU General Public License for more details. */ -#if IS_ENABLED(MAINBOARD_HAS_SPEAKER) +#if MAINBOARD_HAS_SPEAKER #define IO61_HID "PNP0800" /* AT style speaker */ #else #define IO61_HID "PNP0C02" /* reserved resource */ |