23 lines
367 B
C
23 lines
367 B
C
/*
|
|
* (C) Copyright 2017 Rockchip Electronics Co., Ltd
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _CHARGE_ANIMATION_H_
|
|
#define _CHARGE_ANIMATION_H_
|
|
|
|
struct charge_animation_pdata {
|
|
int android_charge;
|
|
int uboot_charge;
|
|
|
|
int exit_charge_voltage;
|
|
int exit_charge_level;
|
|
int low_power_voltage;
|
|
int screen_on_voltage;
|
|
|
|
int system_suspend;
|
|
};
|
|
|
|
#endif
|