bq24190_charger.h 305 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Platform data for the TI bq24190 battery charger driver.
  4. */
  5. #ifndef _BQ24190_CHARGER_H_
  6. #define _BQ24190_CHARGER_H_
  7. #include <linux/regulator/machine.h>
  8. struct bq24190_platform_data {
  9. const struct regulator_init_data *regulator_init_data;
  10. };
  11. #endif