blob: 84fe7328fa604f59718ff88cb016d6464b5e21d3 (
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 <gpio.h>
bool __weak variant_has_pcie_wwan(void)
{
return false;
}
uint8_t __weak variant_sd_aux_reset_gpio(void)
{
return GPIO_69;
}
|