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
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
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;
|
|
|
|
};
|