diff options
author | mirko <mirko@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-12-13 01:54:56 +0000 |
---|---|---|
committer | mirko <mirko@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-12-13 01:54:56 +0000 |
commit | a95f9f92e2953d5829a29e95644dc4c4bc93f590 (patch) | |
tree | 01f2bf78edb2e3bb1466df9bca72e068632d0e74 /target/linux/s3c24xx/patches-2.6.26/1248-fix-pcf50633-usbrem-charging-led.patch.patch | |
parent | 9fa649271dbc9c83417488203aeb1668a0238c54 (diff) |
change prefix for kernelpatchbase 2.6.26
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13619 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/s3c24xx/patches-2.6.26/1248-fix-pcf50633-usbrem-charging-led.patch.patch')
-rwxr-xr-x | target/linux/s3c24xx/patches-2.6.26/1248-fix-pcf50633-usbrem-charging-led.patch.patch | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/target/linux/s3c24xx/patches-2.6.26/1248-fix-pcf50633-usbrem-charging-led.patch.patch b/target/linux/s3c24xx/patches-2.6.26/1248-fix-pcf50633-usbrem-charging-led.patch.patch new file mode 100755 index 000000000..dcbf699bd --- /dev/null +++ b/target/linux/s3c24xx/patches-2.6.26/1248-fix-pcf50633-usbrem-charging-led.patch.patch @@ -0,0 +1,46 @@ +From 8d2916df234dc4762dd019db2ace105a6e744894 Mon Sep 17 00:00:00 2001 +From: Andy Green <andy@openmoko.com> +Date: Sun, 10 Aug 2008 09:15:59 +0100 +Subject: [PATCH] fix-pcf50633-usbrem-charging-led.patch + +If the charger was removed, we fell through back to old +hdq-driven code with normally wrong but slightly random +results for charging LED behaviour in that circumstance + +This patch makes us use the tracked charger status +callbacks alone if they are defined in the platform +data. + +Signed-off-by: Andy Green <andy@openmoko.com> +--- + drivers/power/bq27000_battery.c | 12 ++++++++---- + 1 files changed, 8 insertions(+), 4 deletions(-) + +diff --git a/drivers/power/bq27000_battery.c b/drivers/power/bq27000_battery.c +index 7020608..4c7e862 100644 +--- a/drivers/power/bq27000_battery.c ++++ b/drivers/power/bq27000_battery.c +@@ -182,12 +182,16 @@ static int bq27000_battery_get_property(struct power_supply *psy, + */ + if (!di->pdata->get_charger_active_status) + goto use_bat; +- if ((di->pdata->get_charger_active_status)()) ++ ++ if ((di->pdata->get_charger_active_status)()) { + val->intval = POWER_SUPPLY_STATUS_CHARGING; +- else +- val->intval = POWER_SUPPLY_STATUS_NOT_CHARGING; +- break; ++ break; ++ } + } ++ ++ val->intval = POWER_SUPPLY_STATUS_NOT_CHARGING; ++ break; ++ + use_bat: + /* + * either the charger is not connected, or the +-- +1.5.6.3 + |