6db4831e98
Android 14
17 lines
224 B
C
17 lines
224 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2019 MediaTek Inc.
|
|
*/
|
|
#include <linux/module.h>
|
|
|
|
|
|
signed int battery_get_bat_voltage(void)
|
|
{
|
|
return 4000;
|
|
}
|
|
|
|
void wake_up_bat(void)
|
|
{
|
|
}
|
|
EXPORT_SYMBOL(wake_up_bat);
|