bq24735-charger.h 401 B

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