root/include/linux/z2_battery.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 /* SPDX-License-Identifier: GPL-2.0 */
   2 #ifndef _LINUX_Z2_BATTERY_H
   3 #define _LINUX_Z2_BATTERY_H
   4 
   5 struct z2_battery_info {
   6         int      batt_I2C_bus;
   7         int      batt_I2C_addr;
   8         int      batt_I2C_reg;
   9         int      charge_gpio;
  10         int      min_voltage;
  11         int      max_voltage;
  12         int      batt_div;
  13         int      batt_mult;
  14         int      batt_tech;
  15         char    *batt_name;
  16 };
  17 
  18 #endif

/* [<][>][^][v][top][bottom][index][help] */