From mboxrd@z Thu Jan 1 00:00:00 1970 From: anarsoul@gmail.com (Vasily Khoruzhick) Date: Fri, 11 Mar 2011 15:09:32 +0200 Subject: [PATCH v2] z2-battery: Fix count of properties In-Reply-To: <4D7A1181.2000802@ru.mvista.com> References: <4D7A1181.2000802@ru.mvista.com> Message-ID: <1299848972-25596-1-git-send-email-anarsoul@gmail.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org PROP_STATUS property was not counted, as result VOLTAGE_MIN property is missing in sysfs. Fix it. Signed-off-by: Vasily Khoruzhick --- v2: Align comment properly drivers/power/z2_battery.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/power/z2_battery.c b/drivers/power/z2_battery.c index 81304c0..2a9ab89 100644 --- a/drivers/power/z2_battery.c +++ b/drivers/power/z2_battery.c @@ -134,6 +134,8 @@ static int z2_batt_ps_init(struct z2_charger *charger, int props) enum power_supply_property *prop; struct z2_battery_info *info = charger->info; + if (info->charge_gpio >= 0) + props++; /* POWER_SUPPLY_PROP_STATUS */ if (info->batt_tech >= 0) props++; /* POWER_SUPPLY_PROP_TECHNOLOGY */ if (info->batt_I2C_reg >= 0) -- 1.7.4.1