diff options
author | kaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-07-12 10:19:36 +0000 |
---|---|---|
committer | kaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-07-12 10:19:36 +0000 |
commit | d01f0cd58f55d907937dc481a3eee9b269faf1a7 (patch) | |
tree | 6fecbede6915caf176d680eda96898447e32a3ef /target/linux/atheros-2.6/files | |
parent | 139c321a0df141ad46fbade0dfc973d311ad5df3 (diff) |
upgrade atheros targets to 2.6.22.1
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7936 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/atheros-2.6/files')
-rw-r--r-- | target/linux/atheros-2.6/files/arch/mips/atheros/ar5312/irq.c | 4 | ||||
-rw-r--r-- | target/linux/atheros-2.6/files/arch/mips/atheros/ar5315/irq.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/atheros-2.6/files/arch/mips/atheros/ar5312/irq.c b/target/linux/atheros-2.6/files/arch/mips/atheros/ar5312/irq.c index 8345a31eb1..c5062bac48 100644 --- a/target/linux/atheros-2.6/files/arch/mips/atheros/ar5312/irq.c +++ b/target/linux/atheros-2.6/files/arch/mips/atheros/ar5312/irq.c @@ -146,14 +146,14 @@ static irqreturn_t ar5312_ahb_proc_handler(int cpl, void *dev_id) static struct irqaction ar5312_ahb_proc_interrupt = { .handler = ar5312_ahb_proc_handler, - .flags = SA_INTERRUPT, + .flags = IRQF_DISABLED, .name = "ar5312_ahb_proc_interrupt", }; static struct irqaction cascade = { .handler = no_action, - .flags = SA_INTERRUPT, + .flags = IRQF_DISABLED, .name = "cascade", }; diff --git a/target/linux/atheros-2.6/files/arch/mips/atheros/ar5315/irq.c b/target/linux/atheros-2.6/files/arch/mips/atheros/ar5315/irq.c index 3713ebd660..eb2e1a7ae1 100644 --- a/target/linux/atheros-2.6/files/arch/mips/atheros/ar5315/irq.c +++ b/target/linux/atheros-2.6/files/arch/mips/atheros/ar5315/irq.c @@ -288,14 +288,14 @@ static irqreturn_t ar5315_ahb_proc_handler(int cpl, void *dev_id) static struct irqaction ar5315_ahb_proc_interrupt = { .handler = ar5315_ahb_proc_handler, - .flags = SA_INTERRUPT, + .flags = IRQF_DISABLED, .name = "ar5315_ahb_proc_interrupt", }; static struct irqaction cascade = { .handler = no_action, - .flags = SA_INTERRUPT, + .flags = IRQF_DISABLED, .name = "cascade", }; |