1 /* 2 * (C) Copyright 2017 Rockchip Electronics Co., Ltd 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7 #ifndef _CHARGE_ANIMATION_H_ 8 #define _CHARGE_ANIMATION_H_ 9 10 struct charge_animation_pdata { 11 int android_charge; 12 int uboot_charge; 13 14 int exit_charge_voltage; 15 int exit_charge_level; 16 int low_power_voltage; 17 int screen_on_voltage; 18 19 int system_suspend; 20 }; 21 22 #endif 23