ina2xx.h 412 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Driver for Texas Instruments INA219, INA226 power monitor chips
  4. *
  5. * Copyright (C) 2012 Lothar Felten <[email protected]>
  6. *
  7. * For further information, see the Documentation/hwmon/ina2xx.rst file.
  8. */
  9. /**
  10. * struct ina2xx_platform_data - ina2xx info
  11. * @shunt_uohms shunt resistance in microohms
  12. */
  13. struct ina2xx_platform_data {
  14. long shunt_uohms;
  15. };