coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
variants.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef __BASEBOARD_VARIANTS_H__
4 #define __BASEBOARD_VARIANTS_H__
5 
6 #include <soc/gpio.h>
7 
8 /* The next set of functions return the gpio table and fill in the number of
9  * entries for each table. */
10 
11 const struct pad_config *variant_gpio_table(size_t *num);
12 const struct pad_config *variant_early_gpio_table(size_t *num);
13 
14 #endif /*__BASEBOARD_VARIANTS_H__ */
const struct pad_config * variant_gpio_table(size_t *num)
Definition: gpio.c:406
const struct pad_config * variant_early_gpio_table(size_t *num)
Definition: gpio.c:204