tps6507x.h 512 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * tps6507x.h -- Voltage regulation for the Texas Instruments TPS6507X
  4. *
  5. * Copyright (C) 2010 Texas Instruments, Inc.
  6. */
  7. #ifndef REGULATOR_TPS6507X
  8. #define REGULATOR_TPS6507X
  9. /**
  10. * tps6507x_reg_platform_data - platform data for tps6507x
  11. * @defdcdc_default: Defines whether DCDC high or the low register controls
  12. * output voltage by default. Valid for DCDC2 and DCDC3 outputs only.
  13. */
  14. struct tps6507x_reg_platform_data {
  15. bool defdcdc_default;
  16. };
  17. #endif