1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3 */
4
5#ifndef __CHARGER_BQ24735_H_
6#define __CHARGER_BQ24735_H_
7
8#include <linux/types.h>
9#include <linux/power_supply.h>
10
11struct bq24735_platform {
12	uint32_t charge_current;
13	uint32_t charge_voltage;
14	uint32_t input_current;
15
16	const char *name;
17
18	bool ext_control;
19
20	char **supplied_to;
21	size_t num_supplicants;
22};
23
24#endif /* __CHARGER_BQ24735_H_ */
25