blob: fe30e15386ab17cefbd868597a95f0c8f0e6015b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
#include <baseboard/variants.h>
#include <device/device.h>
#include <soc/gpio.h>
bool __weak variant_has_pcie_wwan(void)
{
return false;
}
uint8_t __weak variant_sd_aux_reset_gpio(void)
{
return GPIO_69;
}
|