blob: 248e7a98ab8445123014910f597013403dfca52e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
#include <baseboard/variants.h>
#include <device/device.h>
WEAK_DEV_PTR(fpmcu);
bool variant_has_fpmcu(void)
{
return is_dev_enabled(DEV_PTR(fpmcu));
}
bool __weak variant_has_pcie_wwan(void)
{
return false;
}
|