Hello HAOUAS Elyes, Julius Werner, Angel Pons, Patrick Georgi,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/32225
to review the following change.
Change subject: soc/amd/stoney: Don't use IS_ENABLED() for a constant ......................................................................
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 --- M src/soc/amd/stoneyridge/acpi/lpc.asl 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/25/32225/1
diff --git a/src/soc/amd/stoneyridge/acpi/lpc.asl b/src/soc/amd/stoneyridge/acpi/lpc.asl index e24514c..93b4056 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 */