summaryrefslogtreecommitdiffstats
path: root/drivers/xen/platform-pci.c
diff options
context:
space:
mode:
authorMichael Opdenacker2013-09-09 05:09:47 +0200
committerKonrad Rzeszutek Wilk2013-11-06 21:31:16 +0100
commitaf09d1a73aed4e83ee095f2dabdc09386e31f2ea (patch)
tree46915a040662ac3c0cefe16ff2cb16c83ff47103 /drivers/xen/platform-pci.c
parentx86/xen: remove deprecated IRQF_DISABLED (diff)
downloadkernel-qcow2-linux-af09d1a73aed4e83ee095f2dabdc09386e31f2ea.tar.gz
kernel-qcow2-linux-af09d1a73aed4e83ee095f2dabdc09386e31f2ea.tar.xz
kernel-qcow2-linux-af09d1a73aed4e83ee095f2dabdc09386e31f2ea.zip
xen: remove deprecated IRQF_DISABLED
This patch proposes to remove the IRQF_DISABLED flag from drivers/xen code. It's a NOOP since 2.6.35 and it will be removed one day. Note that architecture dependent fixes for IRQF_DISABLED were already submitted through separate patches. Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com> Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers/xen/platform-pci.c')
-rw-r--r--drivers/xen/platform-pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/platform-pci.c b/drivers/xen/platform-pci.c
index 99db9e1eb8ba..2f3528e93cb9 100644
--- a/drivers/xen/platform-pci.c
+++ b/drivers/xen/platform-pci.c
@@ -84,7 +84,7 @@ static irqreturn_t do_hvm_evtchn_intr(int irq, void *dev_id)
static int xen_allocate_irq(struct pci_dev *pdev)
{
return request_irq(pdev->irq, do_hvm_evtchn_intr,
- IRQF_DISABLED | IRQF_NOBALANCING | IRQF_TRIGGER_RISING,
+ IRQF_NOBALANCING | IRQF_TRIGGER_RISING,
"xen-platform-pci", pdev);
}