blob: 2aa5ee9a90507e8233bde3cb9be257dda23cd52c [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Felten, Lotharf7c2fe32012-05-12 04:36:38 -04002/*
3 * Driver for Texas Instruments INA219, INA226 power monitor chips
4 *
Lothar Felten3ad86702018-08-14 09:09:37 +02005 * Copyright (C) 2012 Lothar Felten <lothar.felten@gmail.com>
Felten, Lotharf7c2fe32012-05-12 04:36:38 -04006 *
Mauro Carvalho Chehab7ebd8b662019-04-17 06:46:29 -03007 * For further information, see the Documentation/hwmon/ina2xx.rst file.
Felten, Lotharf7c2fe32012-05-12 04:36:38 -04008 */
9
10/**
11 * struct ina2xx_platform_data - ina2xx info
12 * @shunt_uohms shunt resistance in microohms
13 */
14struct ina2xx_platform_data {
15 long shunt_uohms;
16};