The patch titled
MIPS: Remove deprecated IRQ flags (SA_*)
has been removed from the -mm tree. Its filename was
mips-remove-deprecated-irq-flags-sa_.patch
This patch was dropped because it was merged into mainline or a subsystem tree
------------------------------------------------------
Subject: MIPS: Remove deprecated IRQ flags (SA_*)
From: "Ahmed S. Darwish" <[EMAIL PROTECTED]>
A patch to stop using deprecated IRQ flags. The new IRQF_* macros are used
instead.
Signed-off-by: Ahmed S. Darwish <[EMAIL PROTECTED]>
Cc: Ralf Baechle <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
diff -puN arch/mips/pci/ops-pmcmsp.c~mips-remove-deprecated-irq-flags-sa_
arch/mips/pci/ops-pmcmsp.c
--- a/arch/mips/pci/ops-pmcmsp.c~mips-remove-deprecated-irq-flags-sa_
+++ a/arch/mips/pci/ops-pmcmsp.c
@@ -404,7 +404,7 @@ int msp_pcibios_config_access(unsigned c
if (pciirqflag == 0) {
request_irq(MSP_INT_PCI,/* Hardcoded internal MSP7120 wiring */
bpci_interrupt,
- SA_SHIRQ | SA_INTERRUPT,
+ IRQF_SHARED | IRQF_DISABLED,
"PMC MSP PCI Host",
preg);
pciirqflag = ~0;
diff -puN
arch/mips/pmc-sierra/msp71xx/msp_hwbutton.c~mips-remove-deprecated-irq-flags-sa_
arch/mips/pmc-sierra/msp71xx/msp_hwbutton.c
---
a/arch/mips/pmc-sierra/msp71xx/msp_hwbutton.c~mips-remove-deprecated-irq-flags-sa_
+++ a/arch/mips/pmc-sierra/msp71xx/msp_hwbutton.c
@@ -163,7 +163,7 @@ static int msp_hwbutton_register(struct
CIC_EXT_SET_ACTIVE_HI(cic_ext, hirq->eirq);
*CIC_EXT_CFG_REG = cic_ext;
- return request_irq(hirq->irq, hwbutton_handler, SA_INTERRUPT,
+ return request_irq(hirq->irq, hwbutton_handler, IRQF_DISABLED,
hirq->name, (void *)hirq);
}
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
git-kvm.patch
git-mips.patch
ncr53c8xx-remove-deprecated-irq-flags-sa_.patch
completely-remove-deprecated-irq-flags-sa_.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html