From e732773c7473b113b7cbad8611325b65cf96d8c7 Mon Sep 17 00:00:00 2001 From: Nico Huber Date: Sat, 6 Apr 2019 15:57:13 +0200 Subject: soc/amd/stoney: Don't use IS_ENABLED() for a constant MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit IS_ENABLED() was supposed for Kconfig options. Change-Id: Ia40d64856cd89586133e54ff6e02c35d6b647059 Signed-off-by: Nico Huber Reviewed-on: https://review.coreboot.org/c/coreboot/+/32225 Reviewed-by: HAOUAS Elyes Reviewed-by: Kyösti Mälkki Reviewed-by: Paul Menzel Reviewed-by: Julius Werner Tested-by: build bot (Jenkins) --- src/soc/amd/stoneyridge/acpi/lpc.asl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/soc') 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 */ -- cgit v1.2.3