aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/omap24xx/patches-3.3/254-cbus-retu-tahvo-irq-mask-init-fix.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-05-18 20:22:32 +0000
committerGabor Juhos <juhosg@openwrt.org>2012-05-18 20:22:32 +0000
commitbfdcb53577eff8fc744b81f0d4ee03bfba4e563d (patch)
treee47bafe43922f57ee5bba887328fcbe15b6fc6f6 /target/linux/omap24xx/patches-3.3/254-cbus-retu-tahvo-irq-mask-init-fix.patch
parent020b9941036f4dd9fde62e9e3666b5e44704bb27 (diff)
downloadmaster-187ad058-bfdcb53577eff8fc744b81f0d4ee03bfba4e563d.tar.gz
master-187ad058-bfdcb53577eff8fc744b81f0d4ee03bfba4e563d.tar.bz2
master-187ad058-bfdcb53577eff8fc744b81f0d4ee03bfba4e563d.zip
omap24xx: add support for 3.3
Compile tested only. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31810 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/omap24xx/patches-3.3/254-cbus-retu-tahvo-irq-mask-init-fix.patch')
-rw-r--r--target/linux/omap24xx/patches-3.3/254-cbus-retu-tahvo-irq-mask-init-fix.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/target/linux/omap24xx/patches-3.3/254-cbus-retu-tahvo-irq-mask-init-fix.patch b/target/linux/omap24xx/patches-3.3/254-cbus-retu-tahvo-irq-mask-init-fix.patch
new file mode 100644
index 0000000000..a1be6b793e
--- /dev/null
+++ b/target/linux/omap24xx/patches-3.3/254-cbus-retu-tahvo-irq-mask-init-fix.patch
@@ -0,0 +1,24 @@
+--- a/drivers/cbus/retu.c
++++ b/drivers/cbus/retu.c
+@@ -451,7 +451,8 @@ static int __devinit retu_probe(struct p
+ (rev >> 4) & 0x07, rev & 0x0f);
+
+ /* Mask all RETU interrupts */
+- __retu_write_reg(retu, RETU_REG_IMR, 0xffff);
++ retu->mask = 0xFFFF;
++ __retu_write_reg(retu, RETU_REG_IMR, retu->mask);
+
+ ret = request_threaded_irq(retu->irq, NULL, retu_irq_handler,
+ IRQF_ONESHOT, "retu", retu);
+--- a/drivers/cbus/tahvo.c
++++ b/drivers/cbus/tahvo.c
+@@ -346,7 +346,8 @@ static int __devinit tahvo_probe(struct
+ (rev >> 4) & 0x0f, rev & 0x0f);
+
+ /* Mask all TAHVO interrupts */
+- __tahvo_write_reg(tahvo, TAHVO_REG_IMR, 0xffff);
++ tahvo->mask = 0xFFFF;
++ __tahvo_write_reg(tahvo, TAHVO_REG_IMR, tahvo->mask);
+
+ ret = request_threaded_irq(irq, NULL, tahvo_irq_handler,
+ IRQF_TRIGGER_RISING | IRQF_ONESHOT,