diff options
Diffstat (limited to 'target/linux/s3c24xx/patches-2.6.24/1084-contrib-fix-chgstate-array-bloat.patch.patch')
-rw-r--r-- | target/linux/s3c24xx/patches-2.6.24/1084-contrib-fix-chgstate-array-bloat.patch.patch | 108 |
1 files changed, 0 insertions, 108 deletions
diff --git a/target/linux/s3c24xx/patches-2.6.24/1084-contrib-fix-chgstate-array-bloat.patch.patch b/target/linux/s3c24xx/patches-2.6.24/1084-contrib-fix-chgstate-array-bloat.patch.patch deleted file mode 100644 index aa51b4e55b..0000000000 --- a/target/linux/s3c24xx/patches-2.6.24/1084-contrib-fix-chgstate-array-bloat.patch.patch +++ /dev/null @@ -1,108 +0,0 @@ -From 293025ae0e971da194ecb58be304835f246b6c9e Mon Sep 17 00:00:00 2001 -From: Mike Montour <mail@mmontour.net> -Date: Sun, 13 Apr 2008 07:25:47 +0100 -Subject: [PATCH] contrib-fix-chgstate-array-bloat.patch - ---- linux-2.6.22/drivers/i2c/chips/pcf50606.c.orig 2008-01-17 22:30:16.000000000 -0800 -+++ linux-2.6.22/drivers/i2c/chips/pcf50606.c 2008-01-17 22:31:43.000000000 -0800 -@@ -71,12 +71,19 @@ - - I2C_CLIENT_INSMOD_1(pcf50606); - --#define PCF50606_F_CHG_FAST 0x00000001 /* Charger Fast allowed */ --#define PCF50606_F_CHG_PRESENT 0x00000002 /* Charger present */ --#define PCF50606_F_CHG_FOK 0x00000004 /* Fast OK for battery */ --#define PCF50606_F_CHG_ERR 0x00000008 /* Charger Error */ --#define PCF50606_F_CHG_PROT 0x00000010 /* Charger Protection */ --#define PCF50606_F_CHG_READY 0x00000020 /* Charging completed */ -+#define PCF50606_B_CHG_FAST 0 /* Charger Fast allowed */ -+#define PCF50606_B_CHG_PRESENT 1 /* Charger present */ -+#define PCF50606_B_CHG_FOK 2 /* Fast OK for battery */ -+#define PCF50606_B_CHG_ERR 3 /* Charger Error */ -+#define PCF50606_B_CHG_PROT 4 /* Charger Protection */ -+#define PCF50606_B_CHG_READY 5 /* Charging completed */ -+ -+#define PCF50606_F_CHG_FAST (1<<PCF50606_B_CHG_FAST) /* Charger Fast allowed */ -+#define PCF50606_F_CHG_PRESENT (1<<PCF50606_B_CHG_PRESENT) /* Charger present */ -+#define PCF50606_F_CHG_FOK (1<<PCF50606_B_CHG_FOK) /* Fast OK for battery */ -+#define PCF50606_F_CHG_ERR (1<<PCF50606_B_CHG_ERR) /* Charger Error */ -+#define PCF50606_F_CHG_PROT (1<<PCF50606_B_CHG_PROT) /* Charger Protection */ -+#define PCF50606_F_CHG_READY (1<<PCF50606_B_CHG_READY) /* Charging completed */ - #define PCF50606_F_CHG_MASK 0x000000fc - - #define PCF50606_F_PWR_PRESSED 0x00000100 -@@ -1026,12 +1033,12 @@ - static DEVICE_ATTR(chgmode, S_IRUGO | S_IWUSR, show_chgmode, set_chgmode); - - static const char *chgstate_names[] = { -- [PCF50606_F_CHG_FAST] = "fast_enabled", -- [PCF50606_F_CHG_PRESENT] = "present", -- [PCF50606_F_CHG_FOK] = "fast_ok", -- [PCF50606_F_CHG_ERR] = "error", -- [PCF50606_F_CHG_PROT] = "protection", -- [PCF50606_F_CHG_READY] = "ready", -+ [PCF50606_B_CHG_FAST] = "fast_enabled", -+ [PCF50606_B_CHG_PRESENT] = "present", -+ [PCF50606_B_CHG_FOK] = "fast_ok", -+ [PCF50606_B_CHG_ERR] = "error", -+ [PCF50606_B_CHG_PROT] = "protection", -+ [PCF50606_B_CHG_READY] = "ready", - }; - - static ssize_t show_chgstate(struct device *dev, struct device_attribute *attr, ---- - drivers/i2c/chips/pcf50606.c | 31 +++++++++++++++++++------------ - 1 files changed, 19 insertions(+), 12 deletions(-) - -diff --git a/drivers/i2c/chips/pcf50606.c b/drivers/i2c/chips/pcf50606.c -index a1c92d3..aaec6e8 100644 ---- a/drivers/i2c/chips/pcf50606.c -+++ b/drivers/i2c/chips/pcf50606.c -@@ -72,12 +72,19 @@ static unsigned short normal_i2c[] = { 0x08, I2C_CLIENT_END }; - - I2C_CLIENT_INSMOD_1(pcf50606); - --#define PCF50606_F_CHG_FAST 0x00000001 /* Charger Fast allowed */ --#define PCF50606_F_CHG_PRESENT 0x00000002 /* Charger present */ --#define PCF50606_F_CHG_FOK 0x00000004 /* Fast OK for battery */ --#define PCF50606_F_CHG_ERR 0x00000008 /* Charger Error */ --#define PCF50606_F_CHG_PROT 0x00000010 /* Charger Protection */ --#define PCF50606_F_CHG_READY 0x00000020 /* Charging completed */ -+#define PCF50606_B_CHG_FAST 0 /* Charger Fast allowed */ -+#define PCF50606_B_CHG_PRESENT 1 /* Charger present */ -+#define PCF50606_B_CHG_FOK 2 /* Fast OK for battery */ -+#define PCF50606_B_CHG_ERR 3 /* Charger Error */ -+#define PCF50606_B_CHG_PROT 4 /* Charger Protection */ -+#define PCF50606_B_CHG_READY 5 /* Charging completed */ -+ -+#define PCF50606_F_CHG_FAST (1<<PCF50606_B_CHG_FAST) /* Charger Fast allowed */ -+#define PCF50606_F_CHG_PRESENT (1<<PCF50606_B_CHG_PRESENT) /* Charger present */ -+#define PCF50606_F_CHG_FOK (1<<PCF50606_B_CHG_FOK) /* Fast OK for battery */ -+#define PCF50606_F_CHG_ERR (1<<PCF50606_B_CHG_ERR) /* Charger Error */ -+#define PCF50606_F_CHG_PROT (1<<PCF50606_B_CHG_PROT) /* Charger Protection */ -+#define PCF50606_F_CHG_READY (1<<PCF50606_B_CHG_READY) /* Charging completed */ - #define PCF50606_F_CHG_MASK 0x000000fc - - #define PCF50606_F_PWR_PRESSED 0x00000100 -@@ -1087,12 +1094,12 @@ static ssize_t set_chgmode(struct device *dev, struct device_attribute *attr, - static DEVICE_ATTR(chgmode, S_IRUGO | S_IWUSR, show_chgmode, set_chgmode); - - static const char *chgstate_names[] = { -- [PCF50606_F_CHG_FAST] = "fast_enabled", -- [PCF50606_F_CHG_PRESENT] = "present", -- [PCF50606_F_CHG_FOK] = "fast_ok", -- [PCF50606_F_CHG_ERR] = "error", -- [PCF50606_F_CHG_PROT] = "protection", -- [PCF50606_F_CHG_READY] = "ready", -+ [PCF50606_B_CHG_FAST] = "fast_enabled", -+ [PCF50606_B_CHG_PRESENT] = "present", -+ [PCF50606_B_CHG_FOK] = "fast_ok", -+ [PCF50606_B_CHG_ERR] = "error", -+ [PCF50606_B_CHG_PROT] = "protection", -+ [PCF50606_B_CHG_READY] = "ready", - }; - - static ssize_t show_chgstate(struct device *dev, struct device_attribute *attr, --- -1.5.6.5 - |