summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/linux/linux-omap2-git/beagleboard/TWL4030-01.patch
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-18 15:32:57 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-18 15:36:06 +0000
commit673abd92f999829bdd67d0273c43570a62123a63 (patch)
tree63132d1ffc1cb5bf50d244b184ca8d58a9cbc85c /meta/recipes-kernel/linux/linux-omap2-git/beagleboard/TWL4030-01.patch
parentfed61beb31c47e2d96af905a7047fe78d64c9bd0 (diff)
downloadpoky-673abd92f999829bdd67d0273c43570a62123a63.tar.gz
conf/machine: Drop older machines with no recent updates
These are all moving to meta-extras. Ideally in the future machines such as these will be maintained to topic specific layers as we move to a more layer oriented model. If this causes a problem for anyone please discuss it on the mailing list. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/linux/linux-omap2-git/beagleboard/TWL4030-01.patch')
-rw-r--r--meta/recipes-kernel/linux/linux-omap2-git/beagleboard/TWL4030-01.patch43
1 files changed, 0 insertions, 43 deletions
diff --git a/meta/recipes-kernel/linux/linux-omap2-git/beagleboard/TWL4030-01.patch b/meta/recipes-kernel/linux/linux-omap2-git/beagleboard/TWL4030-01.patch
deleted file mode 100644
index c361c33d61..0000000000
--- a/meta/recipes-kernel/linux/linux-omap2-git/beagleboard/TWL4030-01.patch
+++ /dev/null
@@ -1,43 +0,0 @@
1TWL4030: remove superfluous PWR interrupt status clear before masking
2
3From: Paul Walmsley <paul@pwsan.com>
4
5twl_irq_init() clears PWR interrupt status bits, then masks the interrupts
6off, then clears the PWR interrupt status bits again. The first clear
7seems unnecessary, so, remove it.
8
9Signed-off-by: Paul Walmsley <paul@pwsan.com>
10---
11
12 drivers/i2c/chips/twl4030-core.c | 18 ------------------
13 1 files changed, 0 insertions(+), 18 deletions(-)
14
15diff --git a/drivers/i2c/chips/twl4030-core.c b/drivers/i2c/chips/twl4030-core.c
16index adc45d4..ff662bc 100644
17--- a/drivers/i2c/chips/twl4030-core.c
18+++ b/drivers/i2c/chips/twl4030-core.c
19@@ -719,24 +719,6 @@ static void twl_init_irq(void)
20 char *msg = "Unable to register interrupt subsystem";
21 unsigned int irq_num;
22
23- /*
24- * We end up with interrupts from other modules before
25- * they get a chance to handle them...
26- */
27- /* PWR_ISR1 */
28- res = twl4030_i2c_write_u8(TWL4030_MODULE_INT, 0xFF, 0x00);
29- if (res < 0) {
30- pr_err("%s[%d][%d]\n", msg, res, __LINE__);
31- return;
32- }
33-
34- /* PWR_ISR2 */
35- res = twl4030_i2c_write_u8(TWL4030_MODULE_INT, 0xFF, 0x02);
36- if (res < 0) {
37- pr_err("%s[%d][%d]\n", msg, res, __LINE__);
38- return;
39- }
40-
41 /* PWR_IMR1 */
42 res = twl4030_i2c_write_u8(TWL4030_MODULE_INT, 0xFF, 0x1);
43 if (res < 0) {