summaryrefslogtreecommitdiff
path: root/target/linux/s3c24xx/patches/0249-fix-no-discharging.patch.patch
diff options
context:
space:
mode:
authorMirko Vogt <mirko@openwrt.org>2008-12-12 00:02:36 +0000
committerMirko Vogt <mirko@openwrt.org>2008-12-12 00:02:36 +0000
commitb9dfb81f2aa45be745a8aed9684076210aed4152 (patch)
treeaceadd7f37096911a29c929988cbcf7c964a1c0b /target/linux/s3c24xx/patches/0249-fix-no-discharging.patch.patch
parent4571721ec22de116ad9998657e0a3c12da6405fb (diff)
downloadmtk-20170518-b9dfb81f2aa45be745a8aed9684076210aed4152.zip
mtk-20170518-b9dfb81f2aa45be745a8aed9684076210aed4152.tar.gz
mtk-20170518-b9dfb81f2aa45be745a8aed9684076210aed4152.tar.bz2
add support for target 3c24xx (more known as Openmoko GTA02 "Freerunner") and merge it with the openmoko-target and the work Michael Buesch <mb> did
SVN-Revision: 13609
Diffstat (limited to 'target/linux/s3c24xx/patches/0249-fix-no-discharging.patch.patch')
-rwxr-xr-xtarget/linux/s3c24xx/patches/0249-fix-no-discharging.patch.patch42
1 files changed, 42 insertions, 0 deletions
diff --git a/target/linux/s3c24xx/patches/0249-fix-no-discharging.patch.patch b/target/linux/s3c24xx/patches/0249-fix-no-discharging.patch.patch
new file mode 100755
index 0000000..a4356fd
--- /dev/null
+++ b/target/linux/s3c24xx/patches/0249-fix-no-discharging.patch.patch
@@ -0,0 +1,42 @@
+From 8d2acef7c5d7179db19b3c8a0ae9ae4c152faaff Mon Sep 17 00:00:00 2001
+From: Andy Green <andy@openmoko.com>
+Date: Sun, 10 Aug 2008 09:16:04 +0100
+Subject: [PATCH] fix-no-discharging.patch
+
+We failed to report status of "discharging", instead reporting
+"not charging" even if we knew that the charger was not present.
+
+This patch corrects it and reports "discharging" when charger
+is absent.
+
+Signed-off-by: Andy Green <andy@openmoko.com>
+---
+ drivers/power/bq27000_battery.c | 10 +++++++++-
+ 1 files changed, 9 insertions(+), 1 deletions(-)
+
+diff --git a/drivers/power/bq27000_battery.c b/drivers/power/bq27000_battery.c
+index 4c7e862..cd4968e 100644
+--- a/drivers/power/bq27000_battery.c
++++ b/drivers/power/bq27000_battery.c
+@@ -187,9 +187,17 @@ static int bq27000_battery_get_property(struct power_supply *psy,
+ val->intval = POWER_SUPPLY_STATUS_CHARGING;
+ break;
+ }
++ val->intval = POWER_SUPPLY_STATUS_NOT_CHARGING;
++ break;
+ }
+
+- val->intval = POWER_SUPPLY_STATUS_NOT_CHARGING;
++ /*
++ * platform provided definite indication of charger presence,
++ * and it is telling us it isn't there... but we are on so we
++ * must be running from battery --->
++ */
++
++ val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
+ break;
+
+ use_bat:
+--
+1.5.6.3
+