diff options
author | Michael Niewöhner <foss@mniewoehner.de> | 2019-09-23 15:17:39 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-09-30 11:35:00 +0000 |
commit | 6ba9b5a86f0cf1362fa07079912a10a99ad9b079 (patch) | |
tree | 4750927c8c93f1f91ef0c759a2f70add4cd27ba7 /src/mainboard/supermicro/x11-lga1151-series | |
parent | cc0dd5f8a2b017dbca8514b26697f5d3970c7ffe (diff) | |
download | coreboot-6ba9b5a86f0cf1362fa07079912a10a99ad9b079.tar.xz |
mb/supermicro/x11-lga1151-series: x11ssh-tf: remove unneeded ACPI ifdef
This removes the "ifdef ACPI" which is not needed here as we currently
don't include gpio.h in any asl file.
Change-Id: I803bbee5933eda9423a9bc9fcaea9e905e3ac78e
Signed-off-by: Michael Niewöhner <foss@mniewoehner.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/35543
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/supermicro/x11-lga1151-series')
-rw-r--r-- | src/mainboard/supermicro/x11-lga1151-series/variants/x11ssh-tf/include/variant/gpio.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mainboard/supermicro/x11-lga1151-series/variants/x11ssh-tf/include/variant/gpio.h b/src/mainboard/supermicro/x11-lga1151-series/variants/x11ssh-tf/include/variant/gpio.h index a5eed6bd13..83fb22db7d 100644 --- a/src/mainboard/supermicro/x11-lga1151-series/variants/x11ssh-tf/include/variant/gpio.h +++ b/src/mainboard/supermicro/x11-lga1151-series/variants/x11ssh-tf/include/variant/gpio.h @@ -19,7 +19,6 @@ #include <soc/gpe.h> #include <soc/gpio.h> -#ifndef __ACPI__ static const struct pad_config gpio_table[] = { /* RCIN# */ _PAD_CFG_STRUCT(GPP_A0, 0x44000702, 0x00000000), /* LAD0 */ _PAD_CFG_STRUCT(GPP_A1, 0x44000702, 0x00000000), @@ -244,5 +243,4 @@ static const struct pad_config early_gpio_table[] = { /* CLKOUT_LPC1 */ _PAD_CFG_STRUCT(GPP_A10, 0x44000700, 0x00000000), }; -#endif /* __ACPI__ */ #endif /* _GPIO_X11SSH_TF_H */ |