summaryrefslogtreecommitdiffstats
path: root/target/linux/s3c24xx/patches-2.6.24/1158-minor-problem-with-LCD.patch
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-03-14 15:52:42 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-03-14 15:52:42 +0000
commit26e3776a22bf894ced5af4c28968dc1dc99968eb (patch)
tree2d38a3789e27a423439c37a45a09cae31990a615 /target/linux/s3c24xx/patches-2.6.24/1158-minor-problem-with-LCD.patch
parent4bd70fc26256cf485f19e0c8b881e078dc36134f (diff)
nuke obsolete kernel stuff
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14875 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/s3c24xx/patches-2.6.24/1158-minor-problem-with-LCD.patch')
-rw-r--r--target/linux/s3c24xx/patches-2.6.24/1158-minor-problem-with-LCD.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/target/linux/s3c24xx/patches-2.6.24/1158-minor-problem-with-LCD.patch b/target/linux/s3c24xx/patches-2.6.24/1158-minor-problem-with-LCD.patch
deleted file mode 100644
index d9f36d527..000000000
--- a/target/linux/s3c24xx/patches-2.6.24/1158-minor-problem-with-LCD.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 123f9e43f721a11e1b70c49b05cacb8f6edd7eaf Mon Sep 17 00:00:00 2001
-From: Sean McNeil <sean@mcneil.com>
-Date: Tue, 13 May 2008 18:54:41 +0100
-Subject: [PATCH] minor problem with LCD
-
-Looking at wrong register to see if the LCD is turned off?
----
- drivers/i2c/chips/pcf50633.c | 4 ++--
- 1 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/drivers/i2c/chips/pcf50633.c b/drivers/i2c/chips/pcf50633.c
-index db0589e..e3f0271 100644
---- a/drivers/i2c/chips/pcf50633.c
-+++ b/drivers/i2c/chips/pcf50633.c
-@@ -1459,7 +1459,7 @@ static int pcf50633bl_get_intensity(struct backlight_device *bd)
- struct pcf50633_data *pcf = bl_get_data(bd);
- int intensity = reg_read(pcf, PCF50633_REG_LEDOUT);
-
-- if (!(reg_read(pcf, PCF50633_REG_LEDOUT) & 1))
-+ if (!(reg_read(pcf, PCF50633_REG_LEDENA) & 1))
- intensity = 0;
-
- return intensity & 0x3f;
-@@ -1472,7 +1472,7 @@ static int pcf50633bl_set_intensity(struct backlight_device *bd)
- int old_intensity = reg_read(pcf, PCF50633_REG_LEDOUT);
- int ret;
-
-- if (!(reg_read(pcf, PCF50633_REG_LEDOUT) & 1))
-+ if (!(reg_read(pcf, PCF50633_REG_LEDENA) & 1))
- old_intensity = 0;
-
- if ((bd->props.power != FB_BLANK_UNBLANK) ||
---
-1.5.6.5
-