summaryrefslogtreecommitdiff
path: root/src/mainboard/prodrive/atlas/gpio.c
blob: a573e99e0b98379745c38c83ea9f0b99ae5ec891 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: GPL-2.0-only */

#include <types.h>

#include "gpio.h"

/* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = {
	/* Todo: gpio config */
};

void configure_gpio_pads(void)
{
	gpio_configure_pads(gpio_table, ARRAY_SIZE(gpio_table));
}