Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003  */
0004 
0005 #ifndef __CHARGER_BQ24735_H_
0006 #define __CHARGER_BQ24735_H_
0007 
0008 #include <linux/types.h>
0009 #include <linux/power_supply.h>
0010 
0011 struct bq24735_platform {
0012     uint32_t charge_current;
0013     uint32_t charge_voltage;
0014     uint32_t input_current;
0015 
0016     const char *name;
0017 
0018     bool ext_control;
0019 
0020     char **supplied_to;
0021     size_t num_supplicants;
0022 };
0023 
0024 #endif /* __CHARGER_BQ24735_H_ */