summaryrefslogtreecommitdiff
path: root/wcte11xp.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-07-19 02:05:03 +0000
committerkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-07-19 02:05:03 +0000
commit1653b9dd29b780476545f807d8ae52efcae02048 (patch)
tree2a294416304758ba5e863b53bfde2d5349cb17e0 /wcte11xp.c
parent2b0a37c8514e587dcb396807ec0616dff0256f82 (diff)
update to 2.6.22 request_irq() flags
git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.2@2756 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'wcte11xp.c')
-rw-r--r--wcte11xp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wcte11xp.c b/wcte11xp.c
index f64e447..8765caf 100644
--- a/wcte11xp.c
+++ b/wcte11xp.c
@@ -1492,7 +1492,7 @@ static int __devinit t1xxp_init_one(struct pci_dev *pdev, const struct pci_devic
/* Keep track of which device we are */
pci_set_drvdata(pdev, wc);
- if (request_irq(pdev->irq, t1xxp_interrupt, SA_INTERRUPT | SA_SHIRQ, "wcte11xp", wc)) {
+ if (request_irq(pdev->irq, t1xxp_interrupt, ZAP_IRQ_SHARED_DISABLED, "wcte11xp", wc)) {
printk("wcte11xp: Unable to request IRQ %d\n", pdev->irq);
kfree(wc);
return -EIO;