blob: b6e346f5a4a35ed6f7392c45e6badb803b9e1d8f [file] [log] [blame]
Eran Mitrani05a50d72023-10-16 14:47:29 -07001/* SPDX-License-Identifier: GPL-2.0-or-later */
2
3#include <baseboard/gpio.h>
4#include <baseboard/variants.h>
5#include <types.h>
6#include <soc/gpio.h>
7#include <vendorcode/google/chromeos/chromeos.h>
8
9const struct pad_config *variant_gpio_table(size_t *num)
10{
11 *num = 0;
12 return NULL;
13}
14
15const struct pad_config *variant_early_gpio_table(size_t *num)
16{
17 *num = 0;
18 return NULL;
19}
20
21static const struct cros_gpio cros_gpios[] = {
22};
23
24DECLARE_CROS_GPIOS(cros_gpios);
25
26const struct pad_config *variant_romstage_gpio_table(size_t *num)
27{
28 *num = 0;
29 return NULL;
30}