2019-06-04 16:11:33 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2012-05-12 16:36:38 +08:00
|
|
|
/*
|
|
|
|
* Driver for Texas Instruments INA219, INA226 power monitor chips
|
|
|
|
*
|
2018-08-14 15:09:37 +08:00
|
|
|
* Copyright (C) 2012 Lothar Felten <lothar.felten@gmail.com>
|
2012-05-12 16:36:38 +08:00
|
|
|
*
|
2019-04-17 17:46:29 +08:00
|
|
|
* For further information, see the Documentation/hwmon/ina2xx.rst file.
|
2012-05-12 16:36:38 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* struct ina2xx_platform_data - ina2xx info
|
|
|
|
* @shunt_uohms shunt resistance in microohms
|
|
|
|
*/
|
|
|
|
struct ina2xx_platform_data {
|
|
|
|
long shunt_uohms;
|
|
|
|
};
|