aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/lantiq/files-3.2
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2012-04-12 12:33:56 +0000
committerJohn Crispin <blogic@openwrt.org>2012-04-12 12:33:56 +0000
commit37a565ab654f3ce80f9514e1e625d3bd07739e86 (patch)
treed933bb536eb34a7b28b804d06d8dac93d585fd62 /target/linux/lantiq/files-3.2
parent4879e3f58a284e6afd51899140abd6df30ef8408 (diff)
downloadupstream-37a565ab654f3ce80f9514e1e625d3bd07739e86.tar.gz
upstream-37a565ab654f3ce80f9514e1e625d3bd07739e86.tar.bz2
upstream-37a565ab654f3ce80f9514e1e625d3bd07739e86.zip
[lantiq] update 3.2 patches
sync with lantiq kernel series git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31260 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/lantiq/files-3.2')
-rw-r--r--target/linux/lantiq/files-3.2/arch/mips/lantiq/xway/dev-dwc_otg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/lantiq/files-3.2/arch/mips/lantiq/xway/dev-dwc_otg.c b/target/linux/lantiq/files-3.2/arch/mips/lantiq/xway/dev-dwc_otg.c
index 90b63fc72d..67f580527f 100644
--- a/target/linux/lantiq/files-3.2/arch/mips/lantiq/xway/dev-dwc_otg.c
+++ b/target/linux/lantiq/files-3.2/arch/mips/lantiq/xway/dev-dwc_otg.c
@@ -43,7 +43,6 @@ static struct resource resources[] =
},
[1] = {
.name = "dwc_otg_irq",
- .start = LTQ_USB_INT,
.flags = IORESOURCE_IRQ,
},
};
@@ -65,6 +64,7 @@ xway_register_dwc(int pin)
struct irq_data d;
d.irq = resources[1].start;
ltq_enable_irq(&d);
+ resources[1].start = ltq_is_ase() ? LTQ_USB_ASE_INT : LTQ_USB_INT;
platform_dev.dev.platform_data = (void*) pin;
return platform_device_register(&platform_dev);
}