1 /* SPDX-License-Identifier: GPL-2.0-or-later */
4 #include <baseboard/variants.h>
8 static void power_off_lte_module(void)
10 gpio_output(GPP_H17
, 0);
12 gpio_output(GPP_A10
, 0);
15 void variant_smi_sleep(u8 slp_typ
)
18 * Once the FW_CONFIG is provisioned, power off LTE module only under
19 * the situation where it is stuffed.
21 if (slp_typ
== ACPI_S5
)
22 power_off_lte_module();