diff options
author | Ahmed S. Darwish <darwish.07@gmail.com> | 2007-09-26 18:35:43 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-10-11 18:46:08 -0400 |
commit | 4680576edecb640f64936bd9b92add0a56027b61 (patch) | |
tree | a86b8de2d805fb032636e704f8183ef121bba96f /arch/mips/pmc-sierra | |
parent | 05dc8c02bf40090e9ed23932b1980ead48eb8870 (diff) |
[MIPS] Replace deprecated SA_* IRQ flags with modern IRQF_ variants.
Signed-off-by: Ahmed S. Darwish <darwish.07@gmail.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/pmc-sierra')
-rw-r--r-- | arch/mips/pmc-sierra/msp71xx/msp_hwbutton.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/pmc-sierra/msp71xx/msp_hwbutton.c b/arch/mips/pmc-sierra/msp71xx/msp_hwbutton.c index 6fa85728158b..ab96a2d7f4c4 100644 --- a/arch/mips/pmc-sierra/msp71xx/msp_hwbutton.c +++ b/arch/mips/pmc-sierra/msp71xx/msp_hwbutton.c | |||
@@ -163,7 +163,7 @@ static int msp_hwbutton_register(struct hwbutton_interrupt *hirq) | |||
163 | CIC_EXT_SET_ACTIVE_HI(cic_ext, hirq->eirq); | 163 | CIC_EXT_SET_ACTIVE_HI(cic_ext, hirq->eirq); |
164 | *CIC_EXT_CFG_REG = cic_ext; | 164 | *CIC_EXT_CFG_REG = cic_ext; |
165 | 165 | ||
166 | return request_irq(hirq->irq, hwbutton_handler, SA_INTERRUPT, | 166 | return request_irq(hirq->irq, hwbutton_handler, IRQF_DISABLED, |
167 | hirq->name, (void *)hirq); | 167 | hirq->name, (void *)hirq); |
168 | } | 168 | } |
169 | 169 | ||