diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2007-07-12 10:19:36 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2007-07-12 10:19:36 +0000 |
commit | d2c338cd52bbb07983680fc4369529c7b396617c (patch) | |
tree | 47071bf715bb19b73a841cef500e3d94db924348 /target/linux/atheros-2.6/files | |
parent | 65edd13209cfb70986a94ec017c775a3ab4eba5c (diff) | |
download | upstream-d2c338cd52bbb07983680fc4369529c7b396617c.tar.gz upstream-d2c338cd52bbb07983680fc4369529c7b396617c.tar.bz2 upstream-d2c338cd52bbb07983680fc4369529c7b396617c.zip |
upgrade atheros targets to 2.6.22.1
SVN-Revision: 7936
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", }; |