aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/zork/mainboard.c
diff options
context:
space:
mode:
authorRaul E Rangel <rrangel@chromium.org>2020-06-01 13:59:30 -0600
committerFelix Held <felix-coreboot@felixheld.de>2020-07-10 22:51:40 +0000
commitf261e8183f4ebffed1c042ce5b95af46b00c1571 (patch)
tree222b94e142e9e40f6cb1c5f2ff2afc3618004f8c /src/mainboard/google/zork/mainboard.c
parent1c0b9f25a1a8983e93ff0e0f4e91c277bb188033 (diff)
mb/google/zork: Rename get_gpe_table to variant_gpe_table
This matches the other methods. BUG=b:154756391 TEST=Build trembyle Signed-off-by: Raul E Rangel <rrangel@chromium.org> Change-Id: I6ba1fc5756c17da4dc1727425af17c4582c01a18 Reviewed-on: https://review.coreboot.org/c/coreboot/+/41973 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/mainboard/google/zork/mainboard.c')
-rw-r--r--src/mainboard/google/zork/mainboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/zork/mainboard.c b/src/mainboard/google/zork/mainboard.c
index f295271596..f3ef5c5a98 100644
--- a/src/mainboard/google/zork/mainboard.c
+++ b/src/mainboard/google/zork/mainboard.c
@@ -160,7 +160,7 @@ static void mainboard_init(void *chip_info)
* For boards that only have GPIO generated events, table gpe_table[]
* must be removed, and get_gpe_table() should return NULL.
*/
- gpes = get_gpe_table(&num);
+ gpes = variant_gpe_table(&num);
if (gpes != NULL)
gpe_configure_sci(gpes, num);
}