mirror of
https://github.com/revyos/th1520-vendor-uboot.git
synced 2026-06-21 09:02:25 +02:00
18 lines
309 B
C
Executable File
18 lines
309 B
C
Executable File
/*
|
|
* (C) Copyright 2017 Rockchip Electronics Co., Ltd
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _CHARGE_DISPLAY_H_
|
|
#define _CHARGE_DISPLAY_H_
|
|
|
|
struct dm_charge_display_ops {
|
|
int (*show)(struct udevice *dev);
|
|
};
|
|
|
|
int charge_display(void);
|
|
int charge_display_show(struct udevice *dev);
|
|
|
|
#endif
|