1 /* SPDX-License-Identifier: GPL-2.0-or-later */
4 #include <baseboard/variants.h>
9 const char *get_wifi_sar_cbfs_filename(void)
11 return "wifi_sar-kracko.hex";
15 static void power_off_lte_module(void)
17 gpio_output(GPP_H17
, 0);
19 gpio_output(GPP_A10
, 0);
22 void variant_smi_sleep(u8 slp_typ
)
25 * Once the FW_CONFIG is provisioned, power off LTE module only under
26 * the situation where it is stuffed.
28 if (slp_typ
== ACPI_S5
)
29 power_off_lte_module();