bq25890_charger.h 296 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Platform data for the TI bq25890 battery charger driver.
  4. */
  5. #ifndef _BQ25890_CHARGER_H_
  6. #define _BQ25890_CHARGER_H_
  7. struct regulator_init_data;
  8. struct bq25890_platform_data {
  9. const struct regulator_init_data *regulator_init_data;
  10. };
  11. #endif