soc/intel: Remove blank lines before '}' and after '{'
[coreboot2.git] / src / mainboard / system76 / adl / variants / gaze17-3060-b / gpio_early.c
blobc2009a8e561eb0cf82d95b4b1d2a44e87c1c32ce
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <mainboard/gpio.h>
4 #include <soc/gpio.h>
6 static const struct pad_config early_gpio_table[] = {
7 PAD_CFG_GPO(GPP_A14, 0, DEEP), // DGPU_PWR_EN
8 PAD_CFG_GPO(GPP_B2, 0, DEEP), // DGPU_RST#_PCH
9 };
11 void mainboard_configure_early_gpios(void)
13 gpio_configure_pads(early_gpio_table, ARRAY_SIZE(early_gpio_table));