[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1247422177-7329-7-git-send-email-me@felipebalbi.com>
Date: Sun, 12 Jul 2009 21:09:29 +0300
From: Felipe Balbi <me@...ipebalbi.com>
To: dwmw2@...radead.org
Cc: linux-kernel@...r.kernel.org, Felipe Balbi <me@...ipebalbi.com>
Subject: [rfc/patch 07/15] power: bq27200: add missing suplicants
add the missing suplicants to bq27200 driver.
Signed-off-by: Felipe Balbi <me@...ipebalbi.com>
---
drivers/power/bq27200_battery.c | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/drivers/power/bq27200_battery.c b/drivers/power/bq27200_battery.c
index 44375d6..385a505 100644
--- a/drivers/power/bq27200_battery.c
+++ b/drivers/power/bq27200_battery.c
@@ -164,6 +164,10 @@ static int bq27200_get_property(struct power_supply *psy,
return 0;
}
+static char *bq27200_supplied_to[] = {
+ "main-battery",
+};
+
static int bq27200_battery_probe(struct i2c_client *client,
const struct i2c_device_id *id)
{
@@ -186,6 +190,8 @@ static int bq27200_battery_probe(struct i2c_client *client,
bq->bat.properties = bq27200_props;
bq->bat.num_properties = ARRAY_SIZE(bq27200_props);
bq->bat.get_property = bq27200_get_property;
+ bq->bat.supplied_to = bq27200_supplied_to;
+ bq->bat.num_supplicants = ARRAY_SIZE(bq27200_supplied_to);
retval = power_supply_register(&client->dev, &bq->bat);
if (retval) {
--
1.6.1.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists