summaryrefslogtreecommitdiff
path: root/src/mainboard/google/kahlee/variants/baseboard
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2021-03-13 00:38:06 +0100
committerPatrick Georgi <pgeorgi@google.com>2021-03-15 06:04:31 +0000
commitec2cbecf9368878ba6c2fbb42d02213ef8d04a91 (patch)
tree71ccc2c93a4bb79f39d231a76be388b62b406bc9 /src/mainboard/google/kahlee/variants/baseboard
parent8996b277abcdf8eb9d99f302dd3dddab5633a465 (diff)
mb/google/kahlee: remove get_gpe_table
Since no board overrides the weak get_gpe_table function, gpe_configure_sci wasn't called for any variant, so drop the function. TEST=none Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I3de204cc808449b625e1fa1e79fe653608e4b88a Reviewed-on: https://review.coreboot.org/c/coreboot/+/51474 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Mathew King <mathewk@chromium.org>
Diffstat (limited to 'src/mainboard/google/kahlee/variants/baseboard')
-rw-r--r--src/mainboard/google/kahlee/variants/baseboard/gpio.c12
-rw-r--r--src/mainboard/google/kahlee/variants/baseboard/include/baseboard/variants.h1
2 files changed, 0 insertions, 13 deletions
diff --git a/src/mainboard/google/kahlee/variants/baseboard/gpio.c b/src/mainboard/google/kahlee/variants/baseboard/gpio.c
index 22d8bb8448..f2848f9f29 100644
--- a/src/mainboard/google/kahlee/variants/baseboard/gpio.c
+++ b/src/mainboard/google/kahlee/variants/baseboard/gpio.c
@@ -268,18 +268,6 @@ struct soc_amd_gpio *variant_gpio_table(size_t *size)
return gpio_set_stage_ram;
}
-/*
- * This function is still needed for boards that sets gevents above 23
- * that will generate SCI or SMI, such as kahlee. Normally this function
- * points to a table of gevents and what needs to be set. The code that
- * calls it was modified so that when this function returns NULL then the
- * caller does nothing.
- */
-const __weak struct sci_source *get_gpe_table(size_t *num)
-{
- return NULL;
-}
-
int __weak variant_get_xhci_oc_map(uint16_t *map)
{
*map = USB_OC0 << OC_PORT0_SHIFT; /* USB-C Port0/4 = OC0 */
diff --git a/src/mainboard/google/kahlee/variants/baseboard/include/baseboard/variants.h b/src/mainboard/google/kahlee/variants/baseboard/include/baseboard/variants.h
index f4f91ae0b3..3469aa6510 100644
--- a/src/mainboard/google/kahlee/variants/baseboard/include/baseboard/variants.h
+++ b/src/mainboard/google/kahlee/variants/baseboard/include/baseboard/variants.h
@@ -6,7 +6,6 @@
#include <stddef.h>
#include <soc/southbridge.h>
-const struct sci_source *get_gpe_table(size_t *num);
uint8_t variant_memory_sku(void);
/* Return board SKU. Limited to uint8_t, so it fits into 3 decimal digits */
uint8_t variant_board_sku(void);