xref: /OK3568_Linux_fs/u-boot/include/power/charge_display.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /*
2  * (C) Copyright 2017 Rockchip Electronics Co., Ltd
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6 
7 #ifndef _CHARGE_DISPLAY_H_
8 #define _CHARGE_DISPLAY_H_
9 
10 struct dm_charge_display_ops {
11 	int (*show)(struct udevice *dev);
12 };
13 
14 int charge_display(void);
15 int charge_display_show(struct udevice *dev);
16 
17 #endif
18