You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
309 B
18 lines
309 B
/*
|
|
* (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
|