pm2250-spmi.h 374 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /* Copyright (c) 2020, The Linux Foundation. All rights reserved.
  3. */
  4. #ifndef _PM2250_SPMI_H
  5. #define _PM2250_SPMI_H
  6. #ifdef CONFIG_PM2250_SPMI
  7. int pm2250_spmi_write(struct device *dev, int reg, int value);
  8. #else
  9. int pm2250_spmi_write(struct device *dev, int reg, int value)
  10. {
  11. return 0;
  12. }
  13. #endif /* CONFIG_PM2250_SPMI */
  14. #endif