diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-03-14 15:52:42 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-03-14 15:52:42 +0000 |
commit | 16defbb2bd9478f9e5384b9722f20a694e6bae41 (patch) | |
tree | f52e202c30c7fca103b196ece1223e18446e4dfc /target/linux/s3c24xx/patches-2.6.24/1216-From-ae3f72fc608fcd0a98a980a335ac4dc7ad95b221-Mon-Se.patch | |
parent | b4644aedce6526b5d07b336187c8e6417c7dd75e (diff) | |
download | upstream-16defbb2bd9478f9e5384b9722f20a694e6bae41.tar.gz upstream-16defbb2bd9478f9e5384b9722f20a694e6bae41.tar.bz2 upstream-16defbb2bd9478f9e5384b9722f20a694e6bae41.zip |
nuke obsolete kernel stuff
SVN-Revision: 14875
Diffstat (limited to 'target/linux/s3c24xx/patches-2.6.24/1216-From-ae3f72fc608fcd0a98a980a335ac4dc7ad95b221-Mon-Se.patch')
-rw-r--r-- | target/linux/s3c24xx/patches-2.6.24/1216-From-ae3f72fc608fcd0a98a980a335ac4dc7ad95b221-Mon-Se.patch | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/target/linux/s3c24xx/patches-2.6.24/1216-From-ae3f72fc608fcd0a98a980a335ac4dc7ad95b221-Mon-Se.patch b/target/linux/s3c24xx/patches-2.6.24/1216-From-ae3f72fc608fcd0a98a980a335ac4dc7ad95b221-Mon-Se.patch deleted file mode 100644 index 3be04d7533..0000000000 --- a/target/linux/s3c24xx/patches-2.6.24/1216-From-ae3f72fc608fcd0a98a980a335ac4dc7ad95b221-Mon-Se.patch +++ /dev/null @@ -1,38 +0,0 @@ -From 40581b00b3de51e2234e0e46a69287ab1e74bf75 Mon Sep 17 00:00:00 2001 -From: Holger Freyther <zecke@openmoko.org> -Date: Wed, 2 Jul 2008 22:44:32 +0100 -Subject: [PATCH] From ae3f72fc608fcd0a98a980a335ac4dc7ad95b221 Mon Sep 17 00:00:00 2001 - Subject: [PATCH] [bq27000] Make the checkpatch.pl happy - ---- - drivers/power/bq27000_battery.c | 7 +++++-- - 1 files changed, 5 insertions(+), 2 deletions(-) - -diff --git a/drivers/power/bq27000_battery.c b/drivers/power/bq27000_battery.c -index 4511e9c..c87e26d 100644 ---- a/drivers/power/bq27000_battery.c -+++ b/drivers/power/bq27000_battery.c -@@ -179,7 +179,9 @@ static int bq27000_battery_get_property(struct power_supply *psy, - v = hdq_read16(di, BQ27000_AI_L); - if (v < 0) - return v; -- if (v < 2) { /* no real activity on the battery */ -+ -+ /* no real activity on the battery */ -+ if (v < 2) { - if (!hdq_read16(di, BQ27000_TTF_L)) - val->intval = POWER_SUPPLY_STATUS_FULL; - else -@@ -199,7 +201,8 @@ static int bq27000_battery_get_property(struct power_supply *psy, - v = hdq_read16(di, BQ27000_VOLT_L); - if (v < 0) - return v; -- val->intval = v * 1000; /* mV -> uV */ -+ /* mV -> uV */ -+ val->intval = v * 1000; - break; - case POWER_SUPPLY_PROP_CURRENT_NOW: - v = (di->hdq_read)(BQ27000_FLAGS); --- -1.5.6.5 - |