diff options
| author | Evan Wilson <evan@oliodevices.com> | 2015-11-30 18:08:01 -0800 |
|---|---|---|
| committer | Evan Wilson <evan@oliodevices.com> | 2015-11-30 18:08:01 -0800 |
| commit | 8b56c64ab06318071f89590f2164a774f2450932 (patch) | |
| tree | 30b2418e0404a3778640eb7b6581f1742fa69fb1 | |
| parent | 6eb0df9bf0ae1e165ffe043333f21a9fd74df768 (diff) | |
| download | olio-linux-3.10-8b56c64ab06318071f89590f2164a774f2450932.tar.xz olio-linux-3.10-8b56c64ab06318071f89590f2164a774f2450932.zip | |
Removing the debug statement in the fuel gauge irq
It may be the cause of some crashes/dead devices
Change-Id: Ia1f15e7a783beb984cd901112a9ec53eee39acf5
| -rw-r--r-- | drivers/power/bq27x00_battery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/bq27x00_battery.c b/drivers/power/bq27x00_battery.c index 1cc928fe2c9..4e9cd67f38b 100644 --- a/drivers/power/bq27x00_battery.c +++ b/drivers/power/bq27x00_battery.c @@ -1426,7 +1426,7 @@ static irqreturn_t bq27x00_chg_isr(int irq, void *dev) { struct power_supply *ps = (struct power_supply*) dev; wake_lock_timeout(&chg_wake_lock, msecs_to_jiffies(500)); - dev_dbg(ps->dev, "%s: Updating battery status\n", __func__); + //dev_dbg(ps->dev, "%s: Updating battery status\n", __func__); bq27x00_external_power_changed(ps); return IRQ_HANDLED; |