isl9305.h 487 B

1234567891011121314151617181920212223242526
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * isl9305 - Intersil ISL9305 DCDC regulator
  4. *
  5. * Copyright 2014 Linaro Ltd
  6. *
  7. * Author: Mark Brown <[email protected]>
  8. */
  9. #ifndef __ISL9305_H
  10. #define __ISL9305_H
  11. #define ISL9305_DCD1 0
  12. #define ISL9305_DCD2 1
  13. #define ISL9305_LDO1 2
  14. #define ISL9305_LDO2 3
  15. #define ISL9305_MAX_REGULATOR ISL9305_LDO2
  16. struct regulator_init_data;
  17. struct isl9305_pdata {
  18. struct regulator_init_data *init_data[ISL9305_MAX_REGULATOR + 1];
  19. };
  20. #endif