Commit 152d188b authored by Kai Germaschewski's avatar Kai Germaschewski

ISDN: Fix a typo in drivers/isdn/hisax/elsa.c

One of the janitorial cleanups introduced pci_request_region()
instead of request_region().
parent 3669701f
...@@ -1073,7 +1073,7 @@ setup_elsa(struct IsdnCard *card) ...@@ -1073,7 +1073,7 @@ setup_elsa(struct IsdnCard *card)
} }
if ((cs->subtyp == ELSA_QS1000PCI) || (cs->subtyp == ELSA_QS3000PCI)) { if ((cs->subtyp == ELSA_QS1000PCI) || (cs->subtyp == ELSA_QS3000PCI)) {
if (!pci_request_region(cs->hw.elsa.cfg, 0x80, "elsa isdn pci")) { if (!request_region(cs->hw.elsa.cfg, 0x80, "elsa isdn pci")) {
printk(KERN_WARNING printk(KERN_WARNING
"HiSax: %s pci port %x-%x already in use\n", "HiSax: %s pci port %x-%x already in use\n",
CardType[card->typ], CardType[card->typ],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment