blob: 8244206adf1e74a48d6f0d8e0db13b54987116ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef __BASEBOARD_GPIO_H__
#define __BASEBOARD_GPIO_H__
#include <soc/gpe.h>
#include <soc/gpio.h>
void configure_gpio_pads(void);
void configure_early_gpio_pads(void);
#endif /* __BASEBOARD_GPIO_H__ */
|